Skip to content

Commit

Permalink
scrollbar fixes redux
Browse files Browse the repository at this point in the history
  • Loading branch information
stevewirts committed Nov 5, 2015
1 parent 5146255 commit 4339a69
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 2 additions & 0 deletions fin-hypergrid.dev.html
Original file line number Diff line number Diff line change
Expand Up @@ -32452,6 +32452,8 @@

if (hoverClassOff === 'visible') {
this.sbHScroller.classList.remove(hoverClassOver);
this.sbVScroller.classList.remove(hoverClassOver);
this.sbHScroller.classList.remove(hoverClassOff);
this.sbVScroller.classList.remove(hoverClassOff);
this.sbHScroller.classList.remove('visible');
this.sbVScroller.classList.remove('visible');
Expand Down
4 changes: 2 additions & 2 deletions fin-hypergrid.min.html

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions polymer/js/fin-hypergrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,8 @@

if (hoverClassOff === 'visible') {
this.sbHScroller.classList.remove(hoverClassOver);
this.sbVScroller.classList.remove(hoverClassOver);
this.sbHScroller.classList.remove(hoverClassOff);
this.sbVScroller.classList.remove(hoverClassOff);
this.sbHScroller.classList.remove('visible');
this.sbVScroller.classList.remove('visible');
Expand Down

0 comments on commit 4339a69

Please sign in to comment.