remove debugging
This commit is contained in:
parent
082b0996dd
commit
fb6c956250
1 changed files with 1 additions and 5 deletions
|
@ -93,10 +93,6 @@ Ox.Element = function(options, self) {
|
||||||
.addClass('OxElement')
|
.addClass('OxElement')
|
||||||
.on({mousedown: mousedown});
|
.on({mousedown: mousedown});
|
||||||
|
|
||||||
that._leakSelf = function() {
|
|
||||||
return self;
|
|
||||||
}
|
|
||||||
|
|
||||||
setTooltip();
|
setTooltip();
|
||||||
|
|
||||||
function bind(event, callback, once) {
|
function bind(event, callback, once) {
|
||||||
|
@ -406,7 +402,7 @@ Ox.Element = function(options, self) {
|
||||||
$element.addClass('OxElement').data({oxid: that.oxid});
|
$element.addClass('OxElement').data({oxid: that.oxid});
|
||||||
that.$element.replaceWith($element);
|
that.$element.replaceWith($element);
|
||||||
that.$element = $element;
|
that.$element = $element;
|
||||||
that[0] = that.$element[0];
|
that[0] = $element[0];
|
||||||
return that;
|
return that;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue