Merge branch 'dev' of github.com:trentrichardson/jQuery-Timepicker-Addon into dev

master v0.9.1
Trent 2010-12-02 07:14:12 -05:00
commit c8681053ea
1 changed files with 3 additions and 3 deletions

View File

@ -220,9 +220,9 @@ $.extend(Timepicker.prototype, {
// Added by Peter Medeiros:
// - Figure out what the hour/minute/second max should be based on the step values.
// - Example: if stepMinute is 15, then minMax is 45.
hourMax = o.hourMax - (o.hourMax % o.stepHour),
minMax = o.minuteMax - (o.minuteMax % o.stepMinute),
secMax = o.secondMax - (o.secondMax % o.stepSecond),
hourMax = (o.hourMax - (o.hourMax % o.stepHour)).toFixed(0),
minMax = (o.minuteMax - (o.minuteMax % o.stepMinute)).toFixed(0),
secMax = (o.secondMax - (o.secondMax % o.stepSecond)).toFixed(0),
dp_id = this.inst.id.toString().replace(/([^A-Za-z0-9_])/g, '');
// Prevent displaying twice