@@ -11,7 +11,7 @@ The Angularjs Datepicker is developed by [720kb](http://720kb.net).
1111
1212##Requirements
1313
14- AngularJS v1.2 +
14+ AngularJS v1.3 +
1515
1616###Browser support
1717
@@ -84,6 +84,7 @@ date-set-hidden="" | String(Boolean) | false | Set the default date to be shown
8484date-disabled-dates="" | String([ Date(), Date(), ...] ) | false | Disable specific dates using an _ Array_ of dates
8585date-refocus="" | String(Boolean) | false | Set the datepicker to re-focus the input after selecting a date
8686date-typer="" | String(Boolean) | false | Set the datepicker to update calendar date when user is typing a date
87+ datepicker-class="" | String('class1 class2 class3') | false | Set custom class/es for the datepicker calendar
8788datepicker-append-to="" | String('#id','.classname', 'body') | false | Append the datepicker to #id or .class element or to body
8889datepicker-toggle="" | String(Boolean) | true | Set the datepicker to toggle its visibility on focus and blur
8990
@@ -133,20 +134,13 @@ Sometimes you cannot put date input as a first child of datepicker. In this case
133134<datepicker date-format =" yyyy-MM-dd" selector =" form-control" >
134135 <div class =" input-group" >
135136 <input class =" form-control" placeholder =" Choose a date" />
136- <span class =" input-group-addon" style =" cursor : pointer " ><i class =" fa fa-lg fa-calendar" ></i ></span >
137+ <span class =" input-group-addon" style =" cursor : pointer " >
138+ <i class =" fa fa-lg fa-calendar" ></i >
139+ </span >
137140 </div >
138141</datepicker >
139142```
140143
141- ####Datepicker visible on load
142- You have an option to make the datepicker visible when it loads with ` visible-on-load ` attribute.
143-
144- ``` html
145- <datepicker visible-on-load >
146- <input placeholder =" Choose a date" />
147- </datepicker >
148- ```
149-
150144### Example
151145
152146[ Live demo] ( https://720kb.github.io/angular-datepicker )
0 commit comments