Create new dev version

This commit is contained in:
Trent Richardson 2011-12-03 15:26:14 -05:00
parent 8c862700ca
commit 9963f68ad5

View file

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