mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-06 00:45:09 +00:00
See ChangeLog
Monotone-Parent: 07d4e2dd2f55ba5735637b9ccd7e85474c204bca Monotone-Revision: e25c29c65bbc1f6ce6cf68858f20a104b724d36b Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2011-07-14T15:26:49 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -160,8 +160,8 @@ var SOGoTimePickerInterface = {
|
||||
if (matches) {
|
||||
this.hours = matches[1];
|
||||
this.minutes = matches[2] || '0';
|
||||
if (parseInt(this.hours) > 23) this.hours = 23;
|
||||
if (parseInt(this.minutes) > 59) this.minutes = 59;
|
||||
if (parseInt(this.hours, 10) > 23) this.hours = 23;
|
||||
if (parseInt(this.minutes, 10) > 59) this.minutes = 59;
|
||||
if (this.minutes % 5 == 0) {
|
||||
if (this.extended)
|
||||
this.toggleExtendedView();
|
||||
|
||||
Reference in New Issue
Block a user