File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 197
197
'<div id="ui_tpicker_hour_' + dp_inst . id + '"' + ( ( opts . showHour ) ? '' : noDisplay ) + '></div>' +
198
198
'<div><table><tr>' ;
199
199
200
- for ( var h = 0 ; h < hourMax ; h += opts . hourGrid )
200
+ for ( var h = opts . hourMin ; h < hourMax ; h += opts . hourGrid )
201
201
{
202
202
var tmph = h ;
203
203
if ( opts . ampm && h > 12 )
233
233
'<div id="ui_tpicker_minute_' + dp_inst . id + '"' + ( ( opts . showMinute ) ? '' : noDisplay ) + '></div>' +
234
234
'<div><table><tr>' ;
235
235
236
- for ( var m = 0 ; m < minMax ; m += opts . minuteGrid )
236
+ for ( var m = opts . minuteMin ; m < minMax ; m += opts . minuteGrid )
237
237
{
238
238
html += '<td>' + ( ( m < 10 ) ? '0' : '' ) + m + '</td>' ;
239
239
}
254
254
'<div id="ui_tpicker_second_' + dp_inst . id + '"' + ( ( opts . showSecond ) ? '' : noDisplay ) + '></div>' +
255
255
'<table><table><tr>' ;
256
256
257
- for ( var s = 0 ; s < secMax ; s += opts . secondGrid )
257
+ for ( var s = opts . secondMin ; s < secMax ; s += opts . secondGrid )
258
258
{
259
259
html += '<td>' + ( ( s < 10 ) ? '0' : '' ) + s + '</td>' ;
260
260
}
You can’t perform that action at this time.
0 commit comments