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

Commit 8bf6e37

Browse files
committed
overflowHidden causes page to jump
- when the purchasing modal appeared, the page would jump horizontally because the scrollbar disappeared when overflow Y hidden was added. That property doesn't seem to be needed, so the overflow class was removed.
1 parent 538c50f commit 8bf6e37

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/views/itemVw.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ module.exports = baseVw.extend({
172172
this.registerChild(this.buyWizardView);
173173
$('#modalHolder').html(this.buyWizardView.el).fadeIn(300); //add to DOM first, or accordion will have zero width when initialized
174174
this.buyWizardView.render();
175-
$('#obContainer').addClass('overflowHidden blur');
175+
$('#obContainer').addClass('blur');
176176
},
177177

178178
clickItemRating: function(e) {

0 commit comments

Comments
 (0)