1
0
mirror of https://github.com/ascribe/onion.git synced 2024-06-25 18:56:28 +02:00

new favicons added

This commit is contained in:
Cevo 2015-10-08 14:42:56 +02:00
parent 15460ebc2a
commit b3a9bc2594
2 changed files with 3 additions and 1 deletions

View File

@ -68,7 +68,7 @@ let Header = React.createClass({
setTitle(whitelabel.title)
constructHead(whitelabel.head);
if (whitelabel.subdomain !== 'www'){
return(<img className="img-brand" src={whitelabel.logo}/>);
return (<img className="img-brand" src={whitelabel.logo}/>);
}
else {
return (

View File

@ -10,6 +10,8 @@ function constructHeadElement(elementType, elementId, elementAttributes) {
let oldElement = document.getElementById(elementId);
for (let k in elementAttributes){
try {
console.log('Setting favicons');
console.log(elementAttributes[k]);
element.setAttribute(k, elementAttributes[k]);
}
catch(e){