Skip to content

Commit 30f45c6

Browse files
Updates documentation and version
1 parent 0d63761 commit 30f45c6

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-timepicker-addon",
3-
"version": "1.2.3",
3+
"version": "1.3",
44
"repository": {
55
"type": "git",
66
"url": "git://github.com/trentrichardson/jQuery-Timepicker-Addon.git"

index.html

+3-3
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ <h3>Requirements</h3>
127127

128128

129129
<h3>Version</h3>
130-
<p>Version 1.2.3</p>
130+
<p>Version 1.3</p>
131131

132132
<p>Last updated on 04/13/2013</p>
133133
<p>jQuery Timepicker Addon is currently available for use in all personal or commercial projects under both MIT and GPL licenses. This means that you can choose the license that best suits your project, and use it accordingly. </p>
@@ -565,7 +565,7 @@ <h3 id="timezone_examples">Using Timezones</h3>
565565

566566
<!-- ============= example -->
567567
<div class="example-container">
568-
<p>Use timezone string abbreviations for values:</p>
568+
<p>You may also use timezone string abbreviations for values. This should be used with caution. Computing accurate javascript Date objects may not be possible when trying to retrieve or set the date from timepicker (see setDate and getDate examples below). For simple input values however this should work.</p>
569569
<div>
570570
<input type="text" name="timezone_example_3" id="timezone_example_3" value="" />
571571
</div>
@@ -848,7 +848,7 @@ <h3 id="utility_examples">Utilities</h3>
848848

849849
<!-- ============= example -->
850850
<div class="example-container">
851-
<p>Get and Set Datetime:</p>
851+
<p>Get and Set Datetime with the getDate and setDate methods. This example uses timezone to demonstrate the timepicker regonizes the timezones and computes the offsets when getting and setting.</p>
852852
<div>
853853
<input type="text" name="utility_example_1" id="utility_example_1" value="" />
854854
<button id="utility_example_1_setdt" value="1">Set Datetime</button>

jquery-ui-timepicker-addon.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* jQuery timepicker addon
33
* By: Trent Richardson [http://trentrichardson.com]
4-
* Version 1.2.3-dev
4+
* Version 1.3-dev
55
* Last Modified: 04/13/2013
66
*
77
* Copyright 2013 Trent Richardson
@@ -27,7 +27,7 @@
2727
*/
2828
$.extend($.ui, {
2929
timepicker: {
30-
version: "1.2.3"
30+
version: "1.3"
3131
}
3232
});
3333

@@ -2015,6 +2015,6 @@
20152015
/*
20162016
* Keep up with the version
20172017
*/
2018-
$.timepicker.version = "1.2.3";
2018+
$.timepicker.version = "1.3";
20192019

20202020
})(jQuery);

0 commit comments

Comments
 (0)