1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-07-02 21:10:50 +12:00

Set default dimensions for Safari's popup

This commit is contained in:
Deathamns 2014-10-20 18:27:16 +02:00 committed by gorhill
parent 2216b7f32e
commit 25caa9241c

View file

@ -49,7 +49,10 @@ if (window.chrome) {
// update popover size to its content // update popover size to its content
if (safari.self.identifier === 'popover' && safari.self) { if (safari.self.identifier === 'popover' && safari.self) {
(function() { window.addEventListener('load', function() {
// Initial dimensions are set in Info.plist
var pWidth = safari.self.width;
var pHeight = safari.self.height;
var upadteTimer = null; var upadteTimer = null;
var resizePopover = function() { var resizePopover = function() {
if (upadteTimer) { if (upadteTimer) {
@ -57,10 +60,10 @@ if (window.chrome) {
} }
upadteTimer = setTimeout(function() { upadteTimer = setTimeout(function() {
safari.self.width = document.body.clientWidth; safari.self.width = Math.max(pWidth, document.body.clientWidth);
safari.self.height = document.body.clientHeight; safari.self.height = Math.max(pHeight, document.body.clientHeight);
upadteTimer = null; upadteTimer = null;
}, 50); }, 20);
}; };
var mutObs = window.MutationObserver || window.WebkitMutationObserver; var mutObs = window.MutationObserver || window.WebkitMutationObserver;
@ -77,7 +80,7 @@ if (window.chrome) {
// Safari doesn't support DOMAttrModified // Safari doesn't support DOMAttrModified
document.addEventListener('DOMSubtreeModified', resizePopover); document.addEventListener('DOMSubtreeModified', resizePopover);
} }
})(); });
} }
} }