I need a date picker in input box. Searched around and found ngMaterial provides features like that.
I did all required file inclusion but getting error.
angular.js:68Uncaught Error: [$injector:unpr] Unknown provider: $$asyncCallbackProvider <- $$asyncCallback <- $animate <- $compile
In index.html I want to show date picker for date of birth field.
<div class="row">
<div class="form-group">
<label class="col-sm-5 control-label" for="dob">Date of Birth</label>
<div class="col-sm-6">
<md-datepicker ng-model="answers.myDate" md-placeholder="Enter date"></md-datepicker>
</div>
</div>
</div>
app.js
var app = angular.module("autoQuote", ["ui.router", "ngResource","ngMaterial"]);
...
Please help me to find, what I am missing here?