1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-22 17:33:14 +01:00

set title pull req comment handled

This commit is contained in:
Cevo 2015-10-14 17:29:14 +02:00
parent d1471d1ec9
commit 602675ccb4
2 changed files with 2 additions and 7 deletions

View File

@ -29,7 +29,7 @@ import NavRoutesLinks from './nav_routes_links';
import { mergeOptions } from '../utils/general_utils';
import { getLangText } from '../utils/lang_utils';
import {constructHead, setTitle} from '../utils/head_setter';
import {constructHead} from '../utils/head_setter';
let Header = React.createClass({
propTypes: {
@ -65,8 +65,7 @@ let Header = React.createClass({
},
getLogo(){
let whitelabel = this.state.whitelabel;
if (whitelabel.title && whitelabel.head) {
setTitle(whitelabel.title);
if (whitelabel.head) {
constructHead(whitelabel.head);
}
else{

View File

@ -36,7 +36,3 @@ export function constructHead(headObject){
}
}
}
export function setTitle(titleString){
document.title = titleString;
}