windy 6 years ago
parent
commit
3198da002a
  1. 2
      dist/bundle.ie.js
  2. 4
      dist/bundle.ie.min.js
  3. 2
      dist/bundle.js
  4. 4
      dist/bundle.min.js
  5. 2
      dist/fineui.ie.js
  6. 2
      dist/fineui.js
  7. 2
      dist/fineui_without_jquery_polyfill.js
  8. 2
      dist/widget.js
  9. 2
      src/widget/dynamicdatetime/dynamicdatetime.timeselect.js

2
dist/bundle.ie.js vendored

@ -62593,7 +62593,7 @@ BI.shortcut("bi.dynamic_date_time_popup", BI.DynamicDateTimePopup);BI.DynamicDat
default:
break;
}
if(v.length === 1 && BI.parseInt(v) > limit) {
if(value.length === 1 && BI.parseInt(value) > limit) {
value = "0" + value;
}
if (value.length === 2) {

4
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/bundle.js vendored

@ -63132,7 +63132,7 @@ BI.shortcut("bi.dynamic_date_time_popup", BI.DynamicDateTimePopup);BI.DynamicDat
default:
break;
}
if(v.length === 1 && BI.parseInt(v) > limit) {
if(value.length === 1 && BI.parseInt(value) > limit) {
value = "0" + value;
}
if (value.length === 2) {

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.ie.js vendored

@ -62835,7 +62835,7 @@ BI.shortcut("bi.dynamic_date_time_popup", BI.DynamicDateTimePopup);BI.DynamicDat
default:
break;
}
if(v.length === 1 && BI.parseInt(v) > limit) {
if(value.length === 1 && BI.parseInt(value) > limit) {
value = "0" + value;
}
if (value.length === 2) {

2
dist/fineui.js vendored

@ -63374,7 +63374,7 @@ BI.shortcut("bi.dynamic_date_time_popup", BI.DynamicDateTimePopup);BI.DynamicDat
default:
break;
}
if(v.length === 1 && BI.parseInt(v) > limit) {
if(value.length === 1 && BI.parseInt(value) > limit) {
value = "0" + value;
}
if (value.length === 2) {

2
dist/fineui_without_jquery_polyfill.js vendored

@ -46256,7 +46256,7 @@ BI.shortcut("bi.dynamic_date_time_popup", BI.DynamicDateTimePopup);BI.DynamicDat
default:
break;
}
if(v.length === 1 && BI.parseInt(v) > limit) {
if(value.length === 1 && BI.parseInt(value) > limit) {
value = "0" + value;
}
if (value.length === 2) {

2
dist/widget.js vendored

@ -4436,7 +4436,7 @@ BI.shortcut("bi.dynamic_date_time_popup", BI.DynamicDateTimePopup);BI.DynamicDat
default:
break;
}
if(v.length === 1 && BI.parseInt(v) > limit) {
if(value.length === 1 && BI.parseInt(value) > limit) {
value = "0" + value;
}
if (value.length === 2) {

2
src/widget/dynamicdatetime/dynamicdatetime.timeselect.js

@ -148,7 +148,7 @@ BI.DynamicDateTimeSelect = BI.inherit(BI.Widget, {
default:
break;
}
if(v.length === 1 && BI.parseInt(v) > limit) {
if(value.length === 1 && BI.parseInt(value) > limit) {
value = "0" + value;
}
if (value.length === 2) {

Loading…
Cancel
Save