Skip to content

Commit

Permalink
Fix control width
Browse files Browse the repository at this point in the history
refs #5543
  • Loading branch information
majentsch committed Oct 1, 2015
1 parent 98f2da8 commit 1c38fdd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/js/icinga/ui.js
Expand Up @@ -567,7 +567,7 @@
top : $parent.offset().top,
// Firefox gives 1px too much depending on total width.
// TODO: find a better solution for -1
width : ($fake.width() - 1) + 'px'
width : ($fake.outerWidth() - 1) + 'px'
});

$fake.css({
Expand Down

0 comments on commit 1c38fdd

Please sign in to comment.