Submitter | Alexander Plavin |
---|---|
Date | Sept. 24, 2013, 7:39 p.m. |
Message ID | <6d269731f167e906f9aa.1380051557@debian-alexander.dolgopa> |
Download | mbox | patch |
Permalink | /patch/2626/ |
State | Superseded |
Commit | 5ba3cf17da9e5ccb89bb4f73582dbf26e0f75155 |
Headers | show |
Comments
Patch
diff -r cf5221a1d0e0 -r 6d269731f167 mercurial/templates/static/mercurial.js --- a/mercurial/templates/static/mercurial.js Fri Sep 06 13:30:58 2013 +0400 +++ b/mercurial/templates/static/mercurial.js Fri Sep 06 13:30:58 2013 +0400 @@ -407,12 +407,14 @@ } else { var doc = docFromHTML(htmlText); var nodes = doc.querySelector(containerSelector).children; + var curClass = 'c' + Date.now(); while (nodes.length) { var node = nodes[0]; node = document.adoptNode(node); + node.classList.add(curClass); container.appendChild(node); } - process_dates(); + process_dates('.' + curClass); } }, function onerror(errorText) {