We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/mookjp/pool/blob/master/docker/pool/build-screen/app/scripts/main.js#L1-L16
(function () { showCommitId(); var es = new EventSource("/build/" + getCommitId()); es.addEventListener("build_log", function(event){ $(".log-console").append("\n" + event.data); $(".log-console").animate( { scrollTop: $(".log-console")[0].scrollHeight - $(".log-console").height() }, 50); }); es.addEventListener("build_finished", function(event){ document.location.reload(); }); })();
As $(".log-console") was created every time in call of event, it may make client slow.
$(".log-console")
The text was updated successfully, but these errors were encountered:
No branches or pull requests
https://github.com/mookjp/pool/blob/master/docker/pool/build-screen/app/scripts/main.js#L1-L16
As
$(".log-console")
was created every time in call of event, it may make client slow.The text was updated successfully, but these errors were encountered: