diff options
author | Trent Richardson <trentdrichardson@gmail.com> | 2013-04-23 10:31:21 -0400 |
---|---|---|
committer | Trent Richardson <trentdrichardson@gmail.com> | 2013-04-23 10:31:21 -0400 |
commit | 30f45c668e665b421ab2313a4c75134db2f67cdb (patch) | |
tree | f41e071a23017709b1a73c262230bad146235eba | |
parent | 0d637614190fdd16edfd3e6c98a6882832eda846 (diff) | |
download | jQuery-Timepicker-Addon-30f45c668e665b421ab2313a4c75134db2f67cdb.zip jQuery-Timepicker-Addon-30f45c668e665b421ab2313a4c75134db2f67cdb.tar.gz jQuery-Timepicker-Addon-30f45c668e665b421ab2313a4c75134db2f67cdb.tar.bz2 |
Updates documentation and version
-rw-r--r-- | component.json | 2 | ||||
-rw-r--r-- | index.html | 6 | ||||
-rw-r--r-- | jquery-ui-timepicker-addon.js | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/component.json b/component.json index 83f0018..d5d5168 100644 --- a/component.json +++ b/component.json @@ -1,6 +1,6 @@ { "name": "jquery-timepicker-addon", - "version": "1.2.3", + "version": "1.3", "repository": { "type": "git", "url": "git://github.com/trentrichardson/jQuery-Timepicker-Addon.git" @@ -127,7 +127,7 @@ <h3>Version</h3> - <p>Version 1.2.3</p> + <p>Version 1.3</p> <p>Last updated on 04/13/2013</p> <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 @@ $('#timezone_example_2').datetimepicker({ <!-- ============= example --> <div class="example-container"> - <p>Use timezone string abbreviations for values:</p> + <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> <div> <input type="text" name="timezone_example_3" id="timezone_example_3" value="" /> </div> @@ -848,7 +848,7 @@ endDateTextBox.datetimepicker({ <!-- ============= example --> <div class="example-container"> - <p>Get and Set Datetime:</p> + <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> <div> <input type="text" name="utility_example_1" id="utility_example_1" value="" /> <button id="utility_example_1_setdt" value="1">Set Datetime</button> diff --git a/jquery-ui-timepicker-addon.js b/jquery-ui-timepicker-addon.js index d3da0f4..a32a8c1 100644 --- a/jquery-ui-timepicker-addon.js +++ b/jquery-ui-timepicker-addon.js @@ -1,7 +1,7 @@ /* * jQuery timepicker addon * By: Trent Richardson [http://trentrichardson.com] - * Version 1.2.3-dev + * Version 1.3-dev * Last Modified: 04/13/2013 * * Copyright 2013 Trent Richardson @@ -27,7 +27,7 @@ */ $.extend($.ui, { timepicker: { - version: "1.2.3" + version: "1.3" } }); @@ -2015,6 +2015,6 @@ /* * Keep up with the version */ - $.timepicker.version = "1.2.3"; + $.timepicker.version = "1.3"; })(jQuery); |