Skip to content

Commit 38b7621

Browse files
committed
icon is also shown as page icon too
1 parent e215a1e commit 38b7621

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

webxdc.js

+5
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,11 @@ window.alterXdcApp = () => {
245245
root.innerHTML =
246246
'<img src="' + name + '" style="' + styleAppIcon + '">';
247247
controlPanel.insertBefore(root.firstChild, controlPanel.childNodes[1]);
248+
249+
var pageIcon = document.createElement('link');
250+
pageIcon.rel = "icon";
251+
pageIcon.href = name;
252+
document.head.append(pageIcon);
248253
};
249254
tester.src = name;
250255
}

0 commit comments

Comments
 (0)