diff --git a/jquery-ui-timepicker-addon.js b/jquery-ui-timepicker-addon.js index ffd0549..b91d67d 100644 --- a/jquery-ui-timepicker-addon.js +++ b/jquery-ui-timepicker-addon.js @@ -1,7 +1,7 @@ /* * jQuery timepicker addon * By: Trent Richardson [http://trentrichardson.com] -* Version 0.8-alt +* Version 0.8.1 * Last Modified: 11/15/2010 by Charles Phillips * * Copyright 2010 Trent Richardson @@ -19,7 +19,7 @@ (function($) { -$.extend($.ui, { timepicker: { version: "0.8-alt" } }); +$.extend($.ui, { timepicker: { version: "0.8.1" } }); /* Time picker manager. Use the singleton instance of this class, $.timepicker, to interact with the time picker. @@ -168,10 +168,10 @@ $.extend(Timepicker.prototype, { var noDisplay = ' style="display:none;"', html = '
' + - '
' + o.timeText + '
' + - '
' + - '
' + o.hourText + '
', - hourGridSize = 0, + '
' + o.timeText + '
' + + '
' + + '
' + o.hourText + '
', + hourGridSize = 0, minuteGridSize = 0, secondGridSize = 0, size; @@ -709,6 +709,7 @@ function extendRemove(target, props) { } $.timepicker = new Timepicker(); // singleton instance -$.timepicker.version = "0.8-alt"; +$.timepicker.version = "0.8.1"; })(jQuery); +