summaryrefslogtreecommitdiffstats
path: root/src/docs
diff options
context:
space:
mode:
Diffstat (limited to 'src/docs')
-rw-r--r--src/docs/footer.html4
-rw-r--r--src/docs/header.html2
-rw-r--r--src/docs/options.html9
3 files changed, 12 insertions, 3 deletions
diff --git a/src/docs/footer.html b/src/docs/footer.html
index 1dc3969..2a588b2 100644
--- a/src/docs/footer.html
+++ b/src/docs/footer.html
@@ -4,8 +4,8 @@
</div>
- <script type="text/javascript" src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
- <script type="text/javascript" src="http://code.jquery.com/ui/1.10.3/jquery-ui.min.js"></script>
+ <script type="text/javascript" src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
+ <script type="text/javascript" src="http://code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script>
<script type="text/javascript" src="jquery-ui-timepicker-addon.js"></script>
<script type="text/javascript" src="jquery-ui-sliderAccess.js"></script>
diff --git a/src/docs/header.html b/src/docs/header.html
index d509354..87a0836 100644
--- a/src/docs/header.html
+++ b/src/docs/header.html
@@ -38,7 +38,7 @@
.ebook .buyp a iframe{ margin-bottom: -5px; }
</style>
- <link rel="stylesheet" media="all" type="text/css" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
+ <link rel="stylesheet" media="all" type="text/css" href="http://code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css" />
<link rel="stylesheet" media="all" type="text/css" href="jquery-ui-timepicker-addon.css" />
</head>
diff --git a/src/docs/options.html b/src/docs/options.html
index 4c62358..3cecb5a 100644
--- a/src/docs/options.html
+++ b/src/docs/options.html
@@ -203,6 +203,9 @@
<dt>timeOnly</dt>
<dd><em>Default: false</em> - Hide the datepicker and only provide a time interface.</dd>
+ <dt>timeOnlyShowDate</dt>
+ <dd><em>Default: false</em> - Show the date and time in the input, but only allow the timepicker.</dd>
+
<dt>onSelect</dt>
<dd><em>Default: null</em> - Function to be called when a date is chosen or time has changed (parameters: datetimeText, datepickerInstance).</dd>
@@ -236,6 +239,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>{