only show title in html toolbar on OS X
This commit is contained in:
parent
0c0d324cf4
commit
56af326d65
1 changed files with 5 additions and 1 deletions
|
|
@ -4,7 +4,11 @@ var h = require('virtual-dom/h')
|
|||
|
||||
function Header (state, dispatch) {
|
||||
return h('.header', [
|
||||
h('.title', state.view.title),
|
||||
(function () {
|
||||
if (process.platform === 'darwin') {
|
||||
return h('.title', state.view.title)
|
||||
}
|
||||
})(),
|
||||
h('.nav.left', [
|
||||
h('i.icon.back', {
|
||||
onclick: onBack
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue