diff options
author | http://www.cse.unsw.edu.au/~willu/ <http://www.cse.unsw.edu.au/~willu/@web> | 2008-07-25 00:25:19 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2008-07-25 00:25:19 -0400 |
commit | 27060277cccceb57553bfdd18b6b9ebc54b1546e (patch) | |
tree | 02858f1f8b91c74cfe836f4cef5faa8134d31599 /doc | |
parent | 8f48dd2a8de9d79c23f0b5c499a6283de4698c3a (diff) | |
download | ikiwiki-27060277cccceb57553bfdd18b6b9ebc54b1546e.tar ikiwiki-27060277cccceb57553bfdd18b6b9ebc54b1546e.tar.gz |
report bug
Diffstat (limited to 'doc')
-rw-r--r-- | doc/bugs/toggle_fails_on_Safari.mdwn | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/bugs/toggle_fails_on_Safari.mdwn b/doc/bugs/toggle_fails_on_Safari.mdwn new file mode 100644 index 000000000..e53292f08 --- /dev/null +++ b/doc/bugs/toggle_fails_on_Safari.mdwn @@ -0,0 +1,16 @@ +The [[plugins/toggle]] plugin has no effect when viewed on the Safari web browser. + +All toggles appear open all the time. + +I don't know if this is true for other webkit browsers (the new Konqeror, the iPhone, etc). +I'm currently testing in the Safari nightly builds, but I've seen the bug in the current release +of Safari too. + +Looking at the Safari Wed Inspector, it believes there is a parse error on line 47 of the +[[news]] page. This is the definition of the getElementsByClass(class) function. + + 45 } + 46 + 47 function getElementsByClass(class) { + SyntaxError: Parse error + 48 var ret = new Array(); |