mirror of
https://github.com/maximebf/php-debugbar.git
synced 2025-07-26 19:20:22 +02:00
Cleanup
This commit is contained in:
@@ -740,7 +740,6 @@ if (typeof(PhpDebugBar) == 'undefined') {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(this);
|
|
||||||
this.get('itemRenderer')(this, data);
|
this.get('itemRenderer')(this, data);
|
||||||
});
|
});
|
||||||
this.bindAttr(['itemRenderer', 'search', 'method'], function() {
|
this.bindAttr(['itemRenderer', 'search', 'method'], function() {
|
||||||
@@ -748,7 +747,6 @@ if (typeof(PhpDebugBar) == 'undefined') {
|
|||||||
})
|
})
|
||||||
this.bindAttr(['autoshow'], function() {
|
this.bindAttr(['autoshow'], function() {
|
||||||
var autoshow = this.get('autoshow');
|
var autoshow = this.get('autoshow');
|
||||||
console.log('autoshow', autoshow);
|
|
||||||
this.$autoshow.prop('checked', autoshow);
|
this.$autoshow.prop('checked', autoshow);
|
||||||
})
|
})
|
||||||
},
|
},
|
||||||
@@ -761,7 +759,6 @@ if (typeof(PhpDebugBar) == 'undefined') {
|
|||||||
itemRenderer: function(widget, value) {
|
itemRenderer: function(widget, value) {
|
||||||
var meta = value.__meta;
|
var meta = value.__meta;
|
||||||
|
|
||||||
console.log(widget);
|
|
||||||
var tr = $('<tr />').appendTo(widget.$table)
|
var tr = $('<tr />').appendTo(widget.$table)
|
||||||
.append('<td>' + meta['datetime'] + '</td>')
|
.append('<td>' + meta['datetime'] + '</td>')
|
||||||
.append('<td>' + meta['method'] + '</td>')
|
.append('<td>' + meta['method'] + '</td>')
|
||||||
|
Reference in New Issue
Block a user