Browse Source

reverting fix to #441: undesirable side effects on Firefox

pull/2/head
gorhill 9 years ago
parent
commit
4f63e079bc
  1. 3
      src/css/popup.css
  2. 35
      src/js/popup.js

3
src/css/popup.css

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

35
src/js/popup.js

@ -1335,41 +1335,6 @@ var matrixSnapshotPoller = (function() {
/******************************************************************************/ /******************************************************************************/
// https://github.com/gorhill/uMatrix/pull/441
// Make the header scroll horizontally with the document.
// Ref.: resource-considerate scroll handler:
// https://developer.mozilla.org/en-US/docs/Web/Events/scroll#Example
// Won't cause DOM changes from within scroll handler.
var lastScrollX = 0;
var onScrollThrottledFired = false;
var onScrollThrottled = function() {
lastScrollX = window.scrollX;
var style = document.querySelector('.paneHead').style;
if ( lastScrollX === 0 ) {
style.removeProperty('left');
} else {
style.setProperty('left', '-' + lastScrollX + 'px');
}
onScrollThrottledFired = false;
};
var onScroll = function() {
if ( onScrollThrottledFired || window.scrollX === lastScrollX ) {
return;
}
onScrollThrottledFired = true;
self.requestAnimationFrame(onScrollThrottled);
};
if ( typeof self.requestAnimationFrame === 'function' ) {
document.addEventListener('scroll', onScroll);
}
/******************************************************************************/
// Below is UI stuff which is not key to make the menu, so this can // Below is UI stuff which is not key to make the menu, so this can
// be done without having to wait for a tab to be bound to the menu. // be done without having to wait for a tab to be bound to the menu.

Loading…
Cancel
Save