Update dev version

This commit is contained in:
Trent Richardson 2012-02-11 17:44:20 -05:00
parent 5eb540282f
commit 9b57a88e8c

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.9 * Version 1.0.0-dev
* Last Modified: 02/05/2012 * Last Modified: 02/05/2012
* *
* Copyright 2012 Trent Richardson * Copyright 2012 Trent Richardson
@ -20,7 +20,7 @@
(function($) { (function($) {
$.extend($.ui, { timepicker: { version: "0.9.9" } }); $.extend($.ui, { timepicker: { version: "1.0.0" } });
/* 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.
@ -1320,7 +1320,7 @@ function extendRemove(target, props) {
}; };
$.timepicker = new Timepicker(); // singleton instance $.timepicker = new Timepicker(); // singleton instance
$.timepicker.version = "0.9.9"; $.timepicker.version = "1.0.0";
})(jQuery); })(jQuery);