Move shoutmsg polling invocation to instances where shoutbox is available

This commit is contained in:
cblanc 2015-04-27 23:36:27 +01:00 committed by simplefl
parent 4527fb0612
commit 34f2fc98c9
2 changed files with 12 additions and 9 deletions

View file

@ -24,14 +24,6 @@ $(document).ready(function(){
function HideUserPopupRunner(){
document.getElementById("userPopup").style.visibility = "Hidden";
}
// Shoutbox
$.PeriodicalUpdater("/shoutmsgs/index.js", {
method: "GET",
type: "script",
minTimeout: 10000,
multiplier: 2
});
});
$(function() {

View file

@ -9,3 +9,14 @@
<%= link_to "Shoutbox Recent History", controller: :shoutmsgs, action: "index" %><br/>
<%= link_to "Shoutbox Rules", article_path(Article::SB_RULES) %>
</div>
<script type="text/javascript">
$(document).ready(function () {
$.PeriodicalUpdater("/shoutmsgs/index.js", {
method: "GET",
type: "script",
minTimeout: 10000,
multiplier: 2
});
});
</script>