only show title in html toolbar on OS X
This commit is contained in:
@@ -4,7 +4,11 @@ var h = require('virtual-dom/h')
|
|||||||
|
|
||||||
function Header (state, dispatch) {
|
function Header (state, dispatch) {
|
||||||
return h('.header', [
|
return h('.header', [
|
||||||
h('.title', state.view.title),
|
(function () {
|
||||||
|
if (process.platform === 'darwin') {
|
||||||
|
return h('.title', state.view.title)
|
||||||
|
}
|
||||||
|
})(),
|
||||||
h('.nav.left', [
|
h('.nav.left', [
|
||||||
h('i.icon.back', {
|
h('i.icon.back', {
|
||||||
onclick: onBack
|
onclick: onBack
|
||||||
|
|||||||
Reference in New Issue
Block a user