summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrent Richardson <trentdrichardson@gmail.com>2012-09-08 11:07:55 -0400
committerTrent Richardson <trentdrichardson@gmail.com>2012-09-08 11:07:55 -0400
commit8e03223255586ac6ccd9ca42482662215df3920d (patch)
tree470c22f586c64283be7c79f9f90ca4582b7a9e63
parent54547fb2e8f6d1d417f60bfe80949b1565007f8a (diff)
downloadjQuery-Timepicker-Addon-8e03223255586ac6ccd9ca42482662215df3920d.zip
jQuery-Timepicker-Addon-8e03223255586ac6ccd9ca42482662215df3920d.tar.gz
jQuery-Timepicker-Addon-8e03223255586ac6ccd9ca42482662215df3920d.tar.bz2
Create new dev version
-rw-r--r--index.html2
-rw-r--r--jquery-ui-timepicker-addon.js6
2 files changed, 4 insertions, 4 deletions
diff --git a/index.html b/index.html
index 3af3667..bc59659 100644
--- a/index.html
+++ b/index.html
@@ -588,7 +588,7 @@ $('#example19').text(
<h2>Version</h2>
- <p>Version 1.0.2</p>
+ <p>Version 1.0.3</p>
<p>Last updated on 09/8/2012</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>
diff --git a/jquery-ui-timepicker-addon.js b/jquery-ui-timepicker-addon.js
index 155d2c5..e0047b4 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.0.2
+* Version 1.0.3-dev
* Last Modified: 07/01/2012
*
* Copyright 2012 Trent Richardson
@@ -28,7 +28,7 @@ if ($.ui.timepicker.version) {
return;
}
-$.extend($.ui, { timepicker: { version: "1.0.2" } });
+$.extend($.ui, { timepicker: { version: "1.0.3" } });
/* Time picker manager.
Use the singleton instance of this class, $.timepicker, to interact with the time picker.
@@ -1682,6 +1682,6 @@ $.timepicker.handleRange = function( method, startTime, endTime, options ) {
return $([startTime.get(0), endTime.get(0)]);
};
-$.timepicker.version = "1.0.2";
+$.timepicker.version = "1.0.3";
})(jQuery);