Skip to content

Commit b8fa83c

Browse files
committed
Correct a misspelled property in the contents page script
The last branch of `initialize()` tested `navigator.appnName`, which does not exist and would have thrown had it been reached. It is not reached in practice, since every current browser reports `appName` as "Netscape" and the first branch always wins, but the check was wrong just the same.
1 parent ff4528b commit b8fa83c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

doc/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
collapse_all();
6767
}
6868
else
69-
if (navigator.appnName.indexOf("Konqueror") >= 0){
69+
if (navigator.appName.indexOf("Konqueror") >= 0){
7070
document.onclick = clickHandlerIE;
7171
collapse_all();
7272
}

0 commit comments

Comments
 (0)