1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-26 10:01:08 +12:00

Merge pull request #441 from KenMacD/scroll

Allow horizontal scrolling.
This commit is contained in:
Raymond Hill 2015-12-19 14:30:47 -05:00
commit 88c9440359
2 changed files with 6 additions and 2 deletions

View file

@ -7,7 +7,7 @@ body {
min-height: 16em;
min-width: 32em;
opacity: 1;
overflow-x: hidden;
overflow-x: auto;
overflow-y: auto;
padding: 0;
}
@ -24,7 +24,6 @@ a {
left:0;
padding: 0;
position: fixed;
right: 0;
top: 0;
z-index: 10;
}

View file

@ -960,6 +960,11 @@ var makeMenu = function() {
document.querySelector('.paneHead').clientHeight + 'px'
);
// Make the header scroll with the window.
window.onscroll = function () {
document.querySelector('.paneHead').style.left = "-" + window.scrollX + "px";
};
startMatrixUpdate();
makeMatrixGroup0(groupStats[0]);
makeMatrixGroup1(groupStats[1]);