- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Thu, 19 Aug 2010 09:53:52 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec-author-view In directory hutz:/tmp/cvs-serv15436 Modified Files: dfn.js Log Message: do more something different with the dots Index: dfn.js =================================================================== RCS file: /sources/public/html5/spec-author-view/dfn.js,v retrieving revision 1.12 retrieving revision 1.13 diff -u -d -r1.12 -r1.13 --- dfn.js 19 Aug 2010 09:47:36 -0000 1.12 +++ dfn.js 19 Aug 2010 09:53:50 -0000 1.13 @@ -2,8 +2,11 @@ function initDfn(node, panelDiv) { var request = window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP"); + var loading = document.createElement("i"); + loading.textContent = "loading"; + panelDiv.appendChild(loading); request.onreadystatechange = function () { - var networkStatus = document.createElement("i"); + var networkStatus = document.createElement("span"); panelDiv.appendChild(networkStatus); var dots = ".."; for (var i = 0; i < parseInt(request.readyState); i++) {
Received on Thursday, 19 August 2010 09:53:54 UTC