mirror of https://github.com/gorhill/uBlock.git
Safari: remove extra call to popup resize -- now smoother
This commit is contained in:
parent
c32ea31675
commit
1c60434977
|
@ -35,10 +35,9 @@ var whenSizeChanges = function(elm, callback) {
|
||||||
var onLoaded = function() {
|
var onLoaded = function() {
|
||||||
var body = document.body, popover = safari.self;
|
var body = document.body, popover = safari.self;
|
||||||
var updateSize = function() {
|
var updateSize = function() {
|
||||||
popover.width = body.offsetWidth;
|
popover.width = body.clientWidth;
|
||||||
popover.height = body.offsetHeight;
|
popover.height = body.clientHeight;
|
||||||
};
|
};
|
||||||
updateSize();
|
|
||||||
body.style.position = "relative"; // Necessary for size change detection
|
body.style.position = "relative"; // Necessary for size change detection
|
||||||
whenSizeChanges(body, updateSize);
|
whenSizeChanges(body, updateSize);
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue