Skip to content

Commit

Permalink
scrollbar visibility fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
stevewirts committed Nov 5, 2015
1 parent 3c26db7 commit 5146255
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions fin-hypergrid.dev.html
Original file line number Diff line number Diff line change
Expand Up @@ -32453,6 +32453,10 @@
if (hoverClassOff === 'visible') {
this.sbHScroller.classList.remove(hoverClassOver);
this.sbVScroller.classList.remove(hoverClassOff);
this.sbHScroller.classList.remove('visible');
this.sbVScroller.classList.remove('visible');
this.sbHScroller.classList.remove('hidden');
this.sbVScroller.classList.remove('hidden');
this.sbHScroller.classList.add('visible');
this.sbVScroller.classList.add('visible');
}
Expand Down
4 changes: 2 additions & 2 deletions fin-hypergrid.min.html

Large diffs are not rendered by default.

4 changes: 4 additions & 0 deletions polymer/js/fin-hypergrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,10 @@
if (hoverClassOff === 'visible') {
this.sbHScroller.classList.remove(hoverClassOver);
this.sbVScroller.classList.remove(hoverClassOff);
this.sbHScroller.classList.remove('visible');
this.sbVScroller.classList.remove('visible');
this.sbHScroller.classList.remove('hidden');
this.sbVScroller.classList.remove('hidden');
this.sbHScroller.classList.add('visible');
this.sbVScroller.classList.add('visible');
}
Expand Down

0 comments on commit 5146255

Please sign in to comment.