Updated version from dev

This commit is contained in:
Trent 2011-02-05 11:22:38 -05:00
parent e5577fcc89
commit de54f7ed15

View file

@ -1,7 +1,7 @@
/*
* jQuery timepicker addon
* By: Trent Richardson [http://trentrichardson.com]
* Version 0.9.2
* Version 0.9.3
* 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.
@ -906,6 +906,6 @@ function extendRemove(target, props) {
}
$.timepicker = new Timepicker(); // singleton instance
$.timepicker.version = "0.9.2";
$.timepicker.version = "0.9.3";
})(jQuery);