# HG changeset patch # User Alexander Plavin # Date 1378459858 -14400 # Node ID c35e8805cf5344909b6637429bdbd7f9d37c3e27 # Parent 2c9645c0a582e59b1050ad0761730f76215f0c42 hgweb: show a message when there are no more entries in the list diff -r 2c9645c0a582 -r c35e8805cf53 mercurial/templates/static/mercurial.js --- a/mercurial/templates/static/mercurial.js Thu Sep 19 09:45:00 2013 -0700 +++ b/mercurial/templates/static/mercurial.js Fri Sep 06 13:30:58 2013 +0400 @@ -368,6 +368,11 @@ updateInitiated = true; if (!nextHash) { + var message = { + class: 'scroll-loading-info', + text: 'No more entries' + }; + appendFormatHTML(container, messageFormat, message); return; }