File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ $.extend(Timepicker.prototype, {
289289 if ( o . showHour && o . hourGrid > 0 ) {
290290 html += '<dd class="ui_tpicker_hour">' +
291291 '<div id="ui_tpicker_hour_' + dp_id + '"' + ( ( o . showHour ) ? '' : noDisplay ) + '></div>' +
292- '<div style="padding-left: 1px"><table><tr>' ;
292+ '<div style="padding-left: 1px"><table class="ui-tpicker-grid-label" ><tr>' ;
293293
294294 for ( var h = o . hourMin ; h <= hourMax ; h += o . hourGrid ) {
295295 hourGridSize ++ ;
@@ -315,7 +315,7 @@ $.extend(Timepicker.prototype, {
315315 html += '<dd class="ui_tpicker_minute ui_tpicker_minute_' + o . minuteGrid + '">' +
316316 '<div id="ui_tpicker_minute_' + dp_id + '"' +
317317 ( ( o . showMinute ) ? '' : noDisplay ) + '></div>' +
318- '<div style="padding-left: 1px"><table><tr>' ;
318+ '<div style="padding-left: 1px"><table class="ui-tpicker-grid-label" ><tr>' ;
319319
320320 for ( var m = o . minuteMin ; m <= minMax ; m += o . minuteGrid ) {
321321 minuteGridSize ++ ;
You can’t perform that action at this time.
0 commit comments