0
0
Fork 0
mirror of https://github.com/ENSL/ensl.org.git synced 2025-02-17 17:41:05 +00:00

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 a818e44f46
commit 88a27ebcff
2 changed files with 12 additions and 9 deletions
app
assets/javascripts
views/widgets

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>