Move shoutmsg polling invocation to instances where shoutbox is available

This commit is contained in:
cblanc 2015-04-27 23:36:27 +01:00
parent ad3bab8820
commit f9ca91b6cf
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

@ -8,4 +8,15 @@
<%= render partial: "shoutmsgs/new", locals: { shoutmsg: Shoutmsg.new } %>
<%= link_to "Shoutbox Recent History", controller: :shoutmsgs, action: "index" %><br/>
<%= link_to "Shoutbox Rules", article_path(Article::SB_RULES) %>
</div>
</div>
<script type="text/javascript">
$(document).ready(function () {
$.PeriodicalUpdater("/shoutmsgs/index.js", {
method: "GET",
type: "script",
minTimeout: 10000,
multiplier: 2
});
});
</script>