1
0
mirror of https://github.com/MatMoul/quickdial-webext.git synced 2026-02-26 04:27:48 +00:00

2 Commits

Author SHA1 Message Date
42800d31c1 Version 0.1.23 2026-02-25 22:48:40 +01:00
9cab257540 Fix iframe onload event positioning 2026-02-25 22:48:17 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -563,8 +563,8 @@ app.SiteInfos.fromFrame = function(url, callback){ // Retrieve infos from an ifr
iframe.style.position = 'absolute';
iframe.scrolling = 'no';
var content = xmlHttp.responseText.replace('<head>', '<head><base href="' + url + '">');
iframe.onload = function(){ pageLoaded(); }
document.body.appendChild(iframe);
iframe.onload = function(){ pageLoaded(); }
iframe.srcdoc = content;
setTimeout(function(){ pageLoaded(); }, 6000);
}

View File

@@ -2,7 +2,7 @@
"manifest_version": 2,
"name": "Quick Dial",
"version": "0.1.22",
"version": "0.1.23",
"author": "MatMoul",
"homepage_url": "https://github.com/MatMoul/quickdial-webext",
"developer": {