windy 6 years ago
parent
commit
57f463ae64
  1. 4
      dist/_fineui.min.js
  2. 2
      dist/bundle.js
  3. 4
      dist/bundle.min.js
  4. 2
      dist/fineui.js
  5. 4
      dist/fineui.min.js
  6. 2
      dist/widget.js
  7. 2
      src/widget/yearquarter/trigger.yearquarter.js

4
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/bundle.js vendored

@ -110419,7 +110419,7 @@ BI.shortcut("bi.dynamic_year_quarter_popup", BI.DynamicYearQuarterPopup);BI.Dyna
_autoSwitch: function (editor) {
var v = editor.getValue();
if (BI.isNotNull(v) && BI.checkDateLegal(v)) {
if (BI.isNotEmptyString(v) && BI.checkDateLegal(v)) {
if (v.length === 4 && this._yearCheck(v)) {
this._doEditorConfirm(editor);
this.quarterEditor.focus();

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/fineui.js vendored

@ -110662,7 +110662,7 @@ BI.shortcut("bi.dynamic_year_quarter_popup", BI.DynamicYearQuarterPopup);BI.Dyna
_autoSwitch: function (editor) {
var v = editor.getValue();
if (BI.isNotNull(v) && BI.checkDateLegal(v)) {
if (BI.isNotEmptyString(v) && BI.checkDateLegal(v)) {
if (v.length === 4 && this._yearCheck(v)) {
this._doEditorConfirm(editor);
this.quarterEditor.focus();

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
dist/widget.js vendored

@ -22952,7 +22952,7 @@ BI.shortcut("bi.dynamic_year_quarter_popup", BI.DynamicYearQuarterPopup);BI.Dyna
_autoSwitch: function (editor) {
var v = editor.getValue();
if (BI.isNotNull(v) && BI.checkDateLegal(v)) {
if (BI.isNotEmptyString(v) && BI.checkDateLegal(v)) {
if (v.length === 4 && this._yearCheck(v)) {
this._doEditorConfirm(editor);
this.quarterEditor.focus();

2
src/widget/yearquarter/trigger.yearquarter.js

@ -133,7 +133,7 @@ BI.DynamicYearQuarterTrigger = BI.inherit(BI.Trigger, {
_autoSwitch: function (editor) {
var v = editor.getValue();
if (BI.isNotNull(v) && BI.checkDateLegal(v)) {
if (BI.isNotEmptyString(v) && BI.checkDateLegal(v)) {
if (v.length === 4 && this._yearCheck(v)) {
this._doEditorConfirm(editor);
this.quarterEditor.focus();

Loading…
Cancel
Save