diff options
Diffstat (limited to 'jquery-ui-timepicker-addon.js')
-rw-r--r-- | jquery-ui-timepicker-addon.js | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/jquery-ui-timepicker-addon.js b/jquery-ui-timepicker-addon.js index dd50ea4..a3fa6d7 100644 --- a/jquery-ui-timepicker-addon.js +++ b/jquery-ui-timepicker-addon.js @@ -1150,15 +1150,11 @@ hour = 12;
}
- var result;
if (hour < 10) {
- result = "0" + hour;
- }
- else {
- result = String(hour);
+ hour = "0" + hour;
}
- return result;
+ return String(hour);
};
/*
@@ -1181,11 +1177,11 @@ var tmptime = format,
ampmName = options.amNames[0],
hour = parseInt(time.hour, 10);
- if (options.ampm) {
- if (hour > 11) {
- ampmName = options.pmNames[0];
- }
+
+ if (hour > 11) {
+ ampmName = options.pmNames[0];
}
+
tmptime = tmptime.replace(/(?:HH?|hh?|mm?|ss?|[tT]{1,2}|[lz]|('.*?'|".*?"))/g, function(match) {
switch (match) {
case 'HH':
|