Updated dev version to 0.9.3-dev

master
Trent 2010-12-27 11:11:35 -05:00
parent e5408d82ac
commit 9f9e50d536
1 changed files with 3 additions and 3 deletions

View File

@ -1,7 +1,7 @@
/*
* jQuery timepicker addon
* By: Trent Richardson [http://trentrichardson.com]
* Version 0.9.2
* Version 0.9.3-dev
* Last Modified: 12/27/2010
*
* Copyright 2010 Trent Richardson
@ -19,7 +19,7 @@
(function($) {
$.extend($.ui, { timepicker: { version: "0.9.2" } });
$.extend($.ui, { timepicker: { version: "0.9.3" } });
/* Time picker manager.
Use the singleton instance of this class, $.timepicker, to interact with the time picker.
@ -869,6 +869,6 @@ function extendRemove(target, props) {
}
$.timepicker = new Timepicker(); // singleton instance
$.timepicker.version = "0.9.2";
$.timepicker.version = "0.9.3";
})(jQuery);