|
|
@ -68,17 +68,6 @@ BI.SignEditor = BI.inherit(BI.Widget, { |
|
|
|
self.fireEvent(BI.SignEditor.EVENT_CLICK_LABEL); |
|
|
|
self.fireEvent(BI.SignEditor.EVENT_CLICK_LABEL); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
BI.createWidget({ |
|
|
|
|
|
|
|
type: "bi.absolute", |
|
|
|
|
|
|
|
element: this, |
|
|
|
|
|
|
|
items: [{ |
|
|
|
|
|
|
|
el: this.text, |
|
|
|
|
|
|
|
left: 0, |
|
|
|
|
|
|
|
right: 0, |
|
|
|
|
|
|
|
top: 0, |
|
|
|
|
|
|
|
bottom: 0 |
|
|
|
|
|
|
|
}] |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
this.editor.on(BI.Controller.EVENT_CHANGE, function () { |
|
|
|
this.editor.on(BI.Controller.EVENT_CHANGE, function () { |
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
|
|
}); |
|
|
|
}); |
|
|
@ -137,10 +126,17 @@ BI.SignEditor = BI.inherit(BI.Widget, { |
|
|
|
self.fireEvent(BI.SignEditor.EVENT_EMPTY, arguments); |
|
|
|
self.fireEvent(BI.SignEditor.EVENT_EMPTY, arguments); |
|
|
|
}); |
|
|
|
}); |
|
|
|
BI.createWidget({ |
|
|
|
BI.createWidget({ |
|
|
|
type: "bi.vertical", |
|
|
|
type: "bi.absolute", |
|
|
|
scrolly: false, |
|
|
|
|
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
items: [this.editor] |
|
|
|
items: [ |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
el: this.text, |
|
|
|
|
|
|
|
inset: 0, |
|
|
|
|
|
|
|
}, { |
|
|
|
|
|
|
|
el: this.editor, |
|
|
|
|
|
|
|
inset: 0, |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
] |
|
|
|
}); |
|
|
|
}); |
|
|
|
this._showHint(); |
|
|
|
this._showHint(); |
|
|
|
self._checkText(); |
|
|
|
self._checkText(); |
|
|
|