main
Last change
on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago |
Update repo after prototype presentation
|
-
Property mode
set to
100644
|
File size:
493 bytes
|
Line | |
---|
1 | "use strict";
|
---|
2 | Object.defineProperty(exports, "__esModule", { value: true });
|
---|
3 | var react_1 = require("react");
|
---|
4 | var useFavicon = function (href) {
|
---|
5 | react_1.useEffect(function () {
|
---|
6 | var link = document.querySelector("link[rel*='icon']") || document.createElement('link');
|
---|
7 | link.type = 'image/x-icon';
|
---|
8 | link.rel = 'shortcut icon';
|
---|
9 | link.href = href;
|
---|
10 | document.getElementsByTagName('head')[0].appendChild(link);
|
---|
11 | }, [href]);
|
---|
12 | };
|
---|
13 | exports.default = useFavicon;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.