Skip to content

Commit

Permalink
Fix typo in icon height calculation
Browse files Browse the repository at this point in the history
(introduced in ccc89d8 commit)
(#137)
  • Loading branch information
Infocatcher committed Apr 12, 2014
1 parent bf94f7f commit cd08b4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -3704,7 +3704,7 @@ var windowsObserver = {
var padding = prefs.get("fixAfterTabsButtonsAccessibility.iconPadding") || (
Math.max(0, (
parseFloat(cs.height) - parseFloat(csi.height || 16)
+ parseFloat(cs.marginTop) + parseFloat(cs.marginTop)
+ parseFloat(cs.marginTop) + parseFloat(cs.marginBottom)
- parseFloat(cs.borderTopWidth) - parseFloat(cs.borderBottomWidth)
)/2) + "px "
+ Math.max(0, (
Expand Down

0 comments on commit cd08b4d

Please sign in to comment.