1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-04 16:47:15 +02:00

Safari: remove extra call to popup resize -- now smoother

This commit is contained in:
Chris 2015-01-11 19:37:10 -07:00
parent c32ea31675
commit 1c60434977

View File

@ -35,10 +35,9 @@ var whenSizeChanges = function(elm, callback) {
var onLoaded = function() {
var body = document.body, popover = safari.self;
var updateSize = function() {
popover.width = body.offsetWidth;
popover.height = body.offsetHeight;
popover.width = body.clientWidth;
popover.height = body.clientHeight;
};
updateSize();
body.style.position = "relative"; // Necessary for size change detection
whenSizeChanges(body, updateSize);
};