Skip to content

Commit

Permalink
Fixed HTML in examples/index.html for firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
josephg committed Jan 23, 2012
1 parent ead4db0 commit db431d2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
<!-- <li class="active"><a href="#">Intro</a></li>-->
</ul>
<ul class="nav secondary-nav">
<li><a><span class="label" id="status">Loading</span></a></li>
<li><a><span class="label warning" id="status">Loading...</span></a></li>
<li><a href="demos.html">Demos</a></li>
<li><a href="https://github.com/josephg/ShareJS/wiki">Documentation</a></li>
<li><a href="https://github.com/josephg/ShareJS">Github</a></li>
Expand Down Expand Up @@ -216,7 +216,7 @@ <h3>Code</h3>
var register = function(state, klass, text) {
connection.on(state, function() {
status.className = 'label ' + klass;
status.innerText = text;
status.innerHTML = text;
});
};

Expand Down

0 comments on commit db431d2

Please sign in to comment.