rename status variable to statusElem, so it doesnt conflict with window.status

This commit is contained in:
Paul Irish 2011-09-09 10:28:03 -07:00
parent 1841e4ac64
commit 30cbdcd75b
2 changed files with 7 additions and 7 deletions

View File

@ -4,10 +4,10 @@
<p>A timer is constantly polling the navigator.onLine property, which is typically switched via File -&gt; Work Offline</p>
</article>
<script>
var status = document.getElementById('status')
var statusElem = document.getElementById('status')
setInterval(function () {
status.className = navigator.onLine ? 'online' : 'offline';
status.innerHTML = navigator.onLine ? 'online' : 'offline';
statusElem.className = navigator.onLine ? 'online' : 'offline';
statusElem.innerHTML = navigator.onLine ? 'online' : 'offline';
}, 250);
</script>

View File

@ -4,12 +4,12 @@
<ol id="state"></ol>
</article>
<script>
var status = document.getElementById('status'),
state = document.getElementById('state');
var statusElem = document.getElementById('status'),
state = document.getElementById('state');
function online(event) {
status.className = navigator.onLine ? 'online' : 'offline';
status.innerHTML = navigator.onLine ? 'online' : 'offline';
statusElem.className = navigator.onLine ? 'online' : 'offline';
statusElem.innerHTML = navigator.onLine ? 'online' : 'offline';
state.innerHTML += '<li>New event: ' + event.type + '</li>';
}