You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -124,6 +124,17 @@ The following parameters are supplied by this directive :
124
124
* '$upDate' the DateObject selected if the user clicks the text between the arrows.
125
125
* '$rightDate' the DateObject selected if the user clicks the right arrow.
126
126
127
+
128
+
```
129
+
DateObject {
130
+
dateValue: Number - UTC time value of this date object - same as moment.valueOf() or Date.getTime(). It does NOT contain time zone information so take that into account when comparing to other dates.
131
+
display: String - the way this value will be displayed on the calendar.
132
+
active: true | false | undefined - indicates that date object is part of the model value.
133
+
selectable: true | false | undefined - indicates that date value is selectable by the user.
134
+
past: true | false | undefined - indicates that date value is prior to the date range of the current view.
135
+
future: true | false | undefined - indicates that date value is after the date range of the current view.
136
+
}
137
+
```
127
138
Setting the .selectable property of a DateObject to false will prevent the user from being able to select that date value.
128
139
129
140
### on-set-time
@@ -177,7 +188,8 @@ The increment used to build the hour view. A button is created for each <code>mi
177
188
178
189
When used within a Bootstrap dropdown and jQuery, the selector specified in dropdownSelector will toggle the dropdown when a date/time is selected.
179
190
180
-
**NOTE:** dropdownSelector **requires** jquery and bootstrap.js. If do not have these available do not specify this option, it will cause an exception.
191
+
**NOTE:** dropdownSelector **requires** jquery and bootstrap.js. If do not have these available do not specify this option. If you do, an error will
192
+
be logged and this option will be removed.
181
193
182
194
183
195
## Working with ng-model
@@ -300,4 +312,4 @@ Support this project and other work by Dale Lotts via [gittip][gittip-dalelotts]
0 commit comments