git://git.iain.cx/iain
/
profile.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f575705
)
Fix test for Mac.
author
Iain Patterson
<me@iain.cx>
Mon, 22 Oct 2012 21:52:19 +0000
(22:52 +0100)
committer
Iain Patterson
<me@iain.cx>
Mon, 22 Oct 2012 21:54:33 +0000
(22:54 +0100)
.pentdactylrc no longer recognises navigator.userAgent but
content.navigator.userAgent works.
.pentadactylrc
patch
|
blob
|
history
diff --git
a/.pentadactylrc
b/.pentadactylrc
index
c96f480
..
78cf13d
100644
(file)
--- a/
.pentadactylrc
+++ b/
.pentadactylrc
@@
-5,7
+5,7
@@
loadplugins '\.(js|penta)$'
" Show scrollbars, address bar and tab numbers.
set guioptions=CMbcmnrs
" On Mac there is no menu bar. The icons are in the toolbar.
-:if (/Mac OS X/.test(navigator.userAgent))
+:if (/Mac OS X/.test(
content.
navigator.userAgent))
set guioptions+=T
:endif