Skip to content
This repository has been archived by the owner on May 29, 2019. It is now read-only.

Commit

Permalink
fix(position): correct scrollbar width calculation
Browse files Browse the repository at this point in the history
Closes #6273
  • Loading branch information
JuliaUsanova authored and wesleycho committed Oct 10, 2016
1 parent 9666c64 commit 58f1813
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/position/position.js
Expand Up @@ -130,7 +130,7 @@ angular.module('ui.bootstrap.position', [])
var paddingRight = this.parseStyle(elemStyle.paddingRight);
var paddingBottom = this.parseStyle(elemStyle.paddingBottom);
var scrollParent = this.scrollParent(elem, false, true);
var scrollbarWidth = this.scrollbarWidth(scrollParent, BODY_REGEX.test(scrollParent.tagName));
var scrollbarWidth = this.scrollbarWidth(BODY_REGEX.test(scrollParent.tagName));

return {
scrollbarWidth: scrollbarWidth,
Expand Down

0 comments on commit 58f1813

Please sign in to comment.