summaryrefslogtreecommitdiffstats
path: root/src/docs/options.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs/options.html')
-rw-r--r--src/docs/options.html6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/docs/options.html b/src/docs/options.html
index 4c62358..941028d 100644
--- a/src/docs/options.html
+++ b/src/docs/options.html
@@ -236,6 +236,12 @@
<dt>maxDateTime</dt>
<dd><em>Default: null</em> - Date object of the maximum datetime allowed. Also Available as maxDate.</dd>
+ <dt>minTime</dt>
+ <dd><em>Default: null</em> - String of the minimum time allowed. '8:00 am' will restrict to times after 8am</dd>
+
+ <dt>maxTime</dt>
+ <dd><em>Default: null</em> - String of the maximum time allowed. '8:00 pm' will restrict to times before 8pm</dd>
+
<dt>parse</dt>
<dd><em>Default: 'strict'</em> - How to parse the time string. Two methods are provided: 'strict' which must match the timeFormat exactly, and 'loose' which uses javascript's new Date(timeString) to guess the time. You may also pass in a function(timeFormat, timeString, options) to handle the parsing yourself, returning a simple object:
<pre>{