only show title in html toolbar on OS X

This commit is contained in:
Feross Aboukhadijeh
2016-03-04 01:28:54 -08:00
parent 0c0d324cf4
commit 56af326d65

View File

@@ -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