We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I installed via bower your datepicker, but your compiled script has an error in html template:
<td ng-click="selectDate(day)" class="noselect" class="{{ ::day.class }}" ng-repeat="day in week"> {{ ::day.value }} </td>
maybe the correct template should look like this
<td ng-click="selectDate(day)" class="noselect" ng-class="::day.class" ng-repeat="day in week"> {{ ::day.value }} </td>
as your github build template is.
(this is why you suggest to not install from bower??)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I installed via bower your datepicker, but your compiled script has an error in html template:
maybe the correct template should look like this
as your github build template is.
(this is why you suggest to not install from bower??)
The text was updated successfully, but these errors were encountered: