Quick Bug fix from dev

This commit is contained in:
Trent Richardson 2010-12-30 10:25:32 -05:00
parent a018a5611b
commit 72f763dac5

View file

@ -1,7 +1,7 @@
/*
* jQuery timepicker addon
* By: Trent Richardson [http://trentrichardson.com]
* Version 0.9.3-dev
* Version 0.9.2
* Last Modified: 12/27/2010
*
* Copyright 2010 Trent Richardson
@ -19,7 +19,7 @@
(function($) {
$.extend($.ui, { timepicker: { version: "0.9.3" } });
$.extend($.ui, { timepicker: { version: "0.9.2" } });
/* 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.3";
$.timepicker.version = "0.9.2";
})(jQuery);