guy 7 years ago
parent
commit
7f2c616367
  1. 9
      bi/case.js
  2. 9
      dist/bundle.js
  3. 4
      dist/bundle.min.js
  4. 9
      dist/case.js
  5. 7
      src/case/colorchooser/colorchooser.custom.js
  6. 2
      src/case/colorchooser/colorpicker/editor.colorpicker.js

9
bi/case.js

@ -3607,8 +3607,7 @@ BI.CustomColorChooser = BI.inherit(BI.Widget, {
BI.CustomColorChooser.superclass._init.apply(this, arguments);
var self = this;
this.editor = BI.createWidget({
type: "bi.color_picker_editor",
width: 195
type: "bi.color_picker_editor"
});
this.editor.on(BI.ColorPickerEditor.EVENT_CHANGE, function () {
self.setValue(this.getValue());
@ -3627,9 +3626,9 @@ BI.CustomColorChooser = BI.inherit(BI.Widget, {
type: "bi.absolute",
items: [{
el: this.editor,
left: 15,
left: 10,
top: 10,
right: 15
right: 10
}],
height: 30
}, {
@ -4261,7 +4260,7 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.ColorPickerEditor.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-color-picker-editor",
width: 200,
// width: 200,
height: 20
})
},

9
dist/bundle.js vendored

@ -65065,8 +65065,7 @@ BI.CustomColorChooser = BI.inherit(BI.Widget, {
BI.CustomColorChooser.superclass._init.apply(this, arguments);
var self = this;
this.editor = BI.createWidget({
type: "bi.color_picker_editor",
width: 195
type: "bi.color_picker_editor"
});
this.editor.on(BI.ColorPickerEditor.EVENT_CHANGE, function () {
self.setValue(this.getValue());
@ -65085,9 +65084,9 @@ BI.CustomColorChooser = BI.inherit(BI.Widget, {
type: "bi.absolute",
items: [{
el: this.editor,
left: 15,
left: 10,
top: 10,
right: 15
right: 10
}],
height: 30
}, {
@ -65719,7 +65718,7 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.ColorPickerEditor.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-color-picker-editor",
width: 200,
// width: 200,
height: 20
})
},

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/case.js vendored

@ -3607,8 +3607,7 @@ BI.CustomColorChooser = BI.inherit(BI.Widget, {
BI.CustomColorChooser.superclass._init.apply(this, arguments);
var self = this;
this.editor = BI.createWidget({
type: "bi.color_picker_editor",
width: 195
type: "bi.color_picker_editor"
});
this.editor.on(BI.ColorPickerEditor.EVENT_CHANGE, function () {
self.setValue(this.getValue());
@ -3627,9 +3626,9 @@ BI.CustomColorChooser = BI.inherit(BI.Widget, {
type: "bi.absolute",
items: [{
el: this.editor,
left: 15,
left: 10,
top: 10,
right: 15
right: 10
}],
height: 30
}, {
@ -4261,7 +4260,7 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.ColorPickerEditor.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-color-picker-editor",
width: 200,
// width: 200,
height: 20
})
},

7
src/case/colorchooser/colorchooser.custom.js

@ -19,8 +19,7 @@ BI.CustomColorChooser = BI.inherit(BI.Widget, {
BI.CustomColorChooser.superclass._init.apply(this, arguments);
var self = this;
this.editor = BI.createWidget({
type: "bi.color_picker_editor",
width: 195
type: "bi.color_picker_editor"
});
this.editor.on(BI.ColorPickerEditor.EVENT_CHANGE, function () {
self.setValue(this.getValue());
@ -39,9 +38,9 @@ BI.CustomColorChooser = BI.inherit(BI.Widget, {
type: "bi.absolute",
items: [{
el: this.editor,
left: 15,
left: 10,
top: 10,
right: 15
right: 10
}],
height: 30
}, {

2
src/case/colorchooser/colorpicker/editor.colorpicker.js

@ -10,7 +10,7 @@ BI.ColorPickerEditor = BI.inherit(BI.Widget, {
_defaultConfig: function () {
return BI.extend(BI.ColorPickerEditor.superclass._defaultConfig.apply(this, arguments), {
baseCls: "bi-color-picker-editor",
width: 200,
// width: 200,
height: 20
})
},

Loading…
Cancel
Save