remove debugging

This commit is contained in:
rolux 2012-06-26 18:01:13 +02:00
parent 082b0996dd
commit fb6c956250

View file

@ -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;
}; };