summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrent Richardson <trentdrichardson@gmail.com>2012-07-01 19:06:39 -0400
committerTrent Richardson <trentdrichardson@gmail.com>2012-07-01 19:06:39 -0400
commit68fdec0e3dae3ebeac730c529135786a8b25246e (patch)
treea92459942f0ca878ebc612e3d265f32236929157
parentc73678c2374a61294f3cad568d327d02711b5106 (diff)
downloadjQuery-Timepicker-Addon-68fdec0e3dae3ebeac730c529135786a8b25246e.zip
jQuery-Timepicker-Addon-68fdec0e3dae3ebeac730c529135786a8b25246e.tar.gz
jQuery-Timepicker-Addon-68fdec0e3dae3ebeac730c529135786a8b25246e.tar.bz2
Create new dev version 1.0.2
-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 20fb5ae..b0cf891 100644
--- a/index.html
+++ b/index.html
@@ -528,7 +528,7 @@ $('#example18').text(
</div>
<h2>Version</h2>
- <p>Version 1.0.1</p>
+ <p>Version 1.0.2</p>
<p>Last updated on 07/01/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 eb3f24e..338d02f 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.1
+* Version 1.0.2-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.1" } });
+$.extend($.ui, { timepicker: { version: "1.0.2" } });
/* Time picker manager.
Use the singleton instance of this class, $.timepicker, to interact with the time picker.
@@ -1525,6 +1525,6 @@ var timeZoneString = function(date)
};
$.timepicker = new Timepicker(); // singleton instance
-$.timepicker.version = "1.0.1";
+$.timepicker.version = "1.0.2";
})(jQuery);