mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 09:21:25 +00:00
Move shoutmsg polling invocation to instances where shoutbox is available
This commit is contained in:
parent
ad3bab8820
commit
f9ca91b6cf
2 changed files with 12 additions and 9 deletions
|
@ -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() {
|
||||
|
|
|
@ -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>
|
Loading…
Reference in a new issue