Skip to content

Commit 709ee92

Browse files
committed
Merge pull request php-debugbar#157 from barryvdh/patch-12
Tweak openhandler, ip width
2 parents 4ce1ac0 + b090b2b commit 709ee92

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/DebugBar/Resources/openhandler.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if (typeof(PhpDebugBar) == 'undefined') {
2525
this.$closebtn = $('<a href="javascript:"><i class="fa fa-times"></i></a>');
2626
this.$table = $('<tbody />');
2727
$('<div>PHP DebugBar | Open</div>').addClass(csscls('header')).append(this.$closebtn).appendTo(this.$el);
28-
$('<table><thead><tr><th width="150">Date</th><th width="55">Method</th><th>URL</th><th width="100">IP</th><th width="100">Filter data</th></tr></thead></table>').append(this.$table).appendTo(this.$el);
28+
$('<table><thead><tr><th width="150">Date</th><th width="55">Method</th><th>URL</th><th width="125">IP</th><th width="100">Filter data</th></tr></thead></table>').append(this.$table).appendTo(this.$el);
2929
this.$actions = $('<div />').addClass(csscls('actions')).appendTo(this.$el);
3030

3131
this.$closebtn.on('click', function() {

0 commit comments

Comments
 (0)