Skip to content

Commit

Permalink
[e] (0) typo
Browse files Browse the repository at this point in the history
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=12931

git-svn-id: http://svn.whatwg.org/webapps@6471 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Aug 16, 2011
1 parent f4b88ba commit 596ee7f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion complete.html
Expand Up @@ -67590,7 +67590,7 @@ <h4 id=browser-state><span class=secno>6.6.10 </span>Browser state</h4>
&lt;title&gt;Online status&lt;/title&gt;
&lt;script&gt;
function updateIndicator() {
document.getElementById('indicator').textContext = navigator.onLine ? 'online' : 'offline';
document.getElementById('indicator').textContent = navigator.onLine ? 'online' : 'offline';
}
&lt;/script&gt;
&lt;/head&gt;
Expand Down
2 changes: 1 addition & 1 deletion index
Expand Up @@ -67472,7 +67472,7 @@ interface <dfn id=navigatoronline>NavigatorOnLine</dfn> {
&lt;title&gt;Online status&lt;/title&gt;
&lt;script&gt;
function updateIndicator() {
document.getElementById('indicator').textContext = navigator.onLine ? 'online' : 'offline';
document.getElementById('indicator').textContent = navigator.onLine ? 'online' : 'offline';
}
&lt;/script&gt;
&lt;/head&gt;
Expand Down
2 changes: 1 addition & 1 deletion source
Expand Up @@ -76836,7 +76836,7 @@ interface <dfn>NavigatorOnLine</dfn> {
&lt;title>Online status&lt;/title>
&lt;script>
function updateIndicator() {
document.getElementById('indicator').textContext = navigator.onLine ? 'online' : 'offline';
document.getElementById('indicator').textContent = navigator.onLine ? 'online' : 'offline';
}
&lt;/script>
&lt;/head>
Expand Down

0 comments on commit 596ee7f

Please sign in to comment.