Updated version to 0.9.4 dev

This commit is contained in:
Trent 2011-02-05 11:30:23 -05:00
parent 9efeb990d2
commit 03d141abb6

View file

@ -1,7 +1,7 @@
/*
* jQuery timepicker addon
* By: Trent Richardson [http://trentrichardson.com]
* Version 0.9.3-dev
* Version 0.9.4-dev
* 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.4" } });
/* 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.3";
$.timepicker.version = "0.9.4";
})(jQuery);