From e9e33161f25bc1a1457f12018146df29ef97d24b Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Thu, 7 Jun 2018 19:19:09 +0800 Subject: [PATCH] =?UTF-8?q?=E8=BF=98=E5=8E=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dist/bundle.js | 24 ------------------- dist/case.js | 24 ------------------- dist/fineui.js | 24 ------------------- .../plugins/combo.backgroundcolorchooser.js | 6 ----- .../richeditor/plugins/combo.colorchooser.js | 6 ----- .../richeditor/plugins/combo.fontfamily.js | 6 ----- .../richeditor/plugins/combo.sizechooser.js | 6 ----- 7 files changed, 96 deletions(-) diff --git a/dist/bundle.js b/dist/bundle.js index dadbcbf58..5015db18f 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -83918,12 +83918,6 @@ BI.RichEditorBackgroundColorChooser = BI.inherit(BI.RichEditorAction, { } }, - _setVisible: function (b) { - if(b === false) { - this.colorchooser.hideView(); - } - }, - deactivate: function () { } }); @@ -83970,12 +83964,6 @@ BI.RichEditorColorChooser = BI.inherit(BI.RichEditorAction, { } }, - _setVisible: function (b) { - if(b === false) { - this.colorchooser.hideView(); - } - }, - activate: function (rgb) { this.colorchooser.setValue(BI.DOM.rgb2hex(rgb)); }, @@ -84043,12 +84031,6 @@ BI.shortcut("bi.rich_editor_color_chooser", BI.RichEditorColorChooser);BI.RichEd }); }, - _setVisible: function (b) { - if(b === false) { - this.combo.hideView(); - } - }, - hideIf: function (e) { if(!this.combo.element.find(e.target).length > 0) { this.combo.hideView(); @@ -84130,12 +84112,6 @@ BI.RichEditorSizeChooser = BI.inherit(BI.RichEditorAction, { }); }, - _setVisible: function (b) { - if(b === false) { - this.combo.hideView(); - } - }, - hideIf: function (e) { if(!this.combo.element.find(e.target).length > 0) { this.combo.hideView(); diff --git a/dist/case.js b/dist/case.js index ce5e51797..83f63c578 100644 --- a/dist/case.js +++ b/dist/case.js @@ -11429,12 +11429,6 @@ BI.RichEditorBackgroundColorChooser = BI.inherit(BI.RichEditorAction, { } }, - _setVisible: function (b) { - if(b === false) { - this.colorchooser.hideView(); - } - }, - deactivate: function () { } }); @@ -11481,12 +11475,6 @@ BI.RichEditorColorChooser = BI.inherit(BI.RichEditorAction, { } }, - _setVisible: function (b) { - if(b === false) { - this.colorchooser.hideView(); - } - }, - activate: function (rgb) { this.colorchooser.setValue(BI.DOM.rgb2hex(rgb)); }, @@ -11554,12 +11542,6 @@ BI.shortcut("bi.rich_editor_color_chooser", BI.RichEditorColorChooser);BI.RichEd }); }, - _setVisible: function (b) { - if(b === false) { - this.combo.hideView(); - } - }, - hideIf: function (e) { if(!this.combo.element.find(e.target).length > 0) { this.combo.hideView(); @@ -11641,12 +11623,6 @@ BI.RichEditorSizeChooser = BI.inherit(BI.RichEditorAction, { }); }, - _setVisible: function (b) { - if(b === false) { - this.combo.hideView(); - } - }, - hideIf: function (e) { if(!this.combo.element.find(e.target).length > 0) { this.combo.hideView(); diff --git a/dist/fineui.js b/dist/fineui.js index bd2b8ad68..7c85b701c 100644 --- a/dist/fineui.js +++ b/dist/fineui.js @@ -84161,12 +84161,6 @@ BI.RichEditorBackgroundColorChooser = BI.inherit(BI.RichEditorAction, { } }, - _setVisible: function (b) { - if(b === false) { - this.colorchooser.hideView(); - } - }, - deactivate: function () { } }); @@ -84213,12 +84207,6 @@ BI.RichEditorColorChooser = BI.inherit(BI.RichEditorAction, { } }, - _setVisible: function (b) { - if(b === false) { - this.colorchooser.hideView(); - } - }, - activate: function (rgb) { this.colorchooser.setValue(BI.DOM.rgb2hex(rgb)); }, @@ -84286,12 +84274,6 @@ BI.shortcut("bi.rich_editor_color_chooser", BI.RichEditorColorChooser);BI.RichEd }); }, - _setVisible: function (b) { - if(b === false) { - this.combo.hideView(); - } - }, - hideIf: function (e) { if(!this.combo.element.find(e.target).length > 0) { this.combo.hideView(); @@ -84373,12 +84355,6 @@ BI.RichEditorSizeChooser = BI.inherit(BI.RichEditorAction, { }); }, - _setVisible: function (b) { - if(b === false) { - this.combo.hideView(); - } - }, - hideIf: function (e) { if(!this.combo.element.find(e.target).length > 0) { this.combo.hideView(); diff --git a/src/case/richeditor/plugins/combo.backgroundcolorchooser.js b/src/case/richeditor/plugins/combo.backgroundcolorchooser.js index 3e68e412f..b089bd75c 100644 --- a/src/case/richeditor/plugins/combo.backgroundcolorchooser.js +++ b/src/case/richeditor/plugins/combo.backgroundcolorchooser.js @@ -39,12 +39,6 @@ BI.RichEditorBackgroundColorChooser = BI.inherit(BI.RichEditorAction, { } }, - _setVisible: function (b) { - if(b === false) { - this.colorchooser.hideView(); - } - }, - deactivate: function () { } }); diff --git a/src/case/richeditor/plugins/combo.colorchooser.js b/src/case/richeditor/plugins/combo.colorchooser.js index d5e63ef2a..2c5cb109b 100644 --- a/src/case/richeditor/plugins/combo.colorchooser.js +++ b/src/case/richeditor/plugins/combo.colorchooser.js @@ -41,12 +41,6 @@ BI.RichEditorColorChooser = BI.inherit(BI.RichEditorAction, { } }, - _setVisible: function (b) { - if(b === false) { - this.colorchooser.hideView(); - } - }, - activate: function (rgb) { this.colorchooser.setValue(BI.DOM.rgb2hex(rgb)); }, diff --git a/src/case/richeditor/plugins/combo.fontfamily.js b/src/case/richeditor/plugins/combo.fontfamily.js index b2a5eeb11..d8ea17646 100644 --- a/src/case/richeditor/plugins/combo.fontfamily.js +++ b/src/case/richeditor/plugins/combo.fontfamily.js @@ -57,12 +57,6 @@ BI.RichEditorFontChooser = BI.inherit(BI.RichEditorAction, { }); }, - _setVisible: function (b) { - if(b === false) { - this.combo.hideView(); - } - }, - hideIf: function (e) { if(!this.combo.element.find(e.target).length > 0) { this.combo.hideView(); diff --git a/src/case/richeditor/plugins/combo.sizechooser.js b/src/case/richeditor/plugins/combo.sizechooser.js index 4713a9116..5bd52f54d 100644 --- a/src/case/richeditor/plugins/combo.sizechooser.js +++ b/src/case/richeditor/plugins/combo.sizechooser.js @@ -73,12 +73,6 @@ BI.RichEditorSizeChooser = BI.inherit(BI.RichEditorAction, { }); }, - _setVisible: function (b) { - if(b === false) { - this.combo.hideView(); - } - }, - hideIf: function (e) { if(!this.combo.element.find(e.target).length > 0) { this.combo.hideView();