1
0
mirror of https://github.com/ascribe/onion.git synced 2024-11-15 01:25:17 +01:00

console logs a removed head checking and default in the case of undefined head added

This commit is contained in:
Cevo 2015-10-08 15:39:09 +02:00
parent b3a9bc2594
commit 3597b5a905
2 changed files with 7 additions and 4 deletions

View File

@ -65,8 +65,13 @@ let Header = React.createClass({
},
getLogo(){
let whitelabel = this.state.whitelabel;
setTitle(whitelabel.title)
constructHead(whitelabel.head);
if (whitelabel.title && whitelabel.head) {
setTitle(whitelabel.title);
constructHead(whitelabel.head);
}
else{
setTitle('ascribe');
}
if (whitelabel.subdomain !== 'www'){
return (<img className="img-brand" src={whitelabel.logo}/>);
}

View File

@ -10,8 +10,6 @@ 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){