ensl.org/app/views/widgets/_shoutbox.html.erb

24 lines
880 B
Text
Raw Normal View History

2014-04-06 14:14:03 +00:00
<div class="widget shoutbox">
<h4><%= t('widget.shoutbox') %></h4>
<div class="widget-content-wrapper">
<div id="shoutbox" class="transcript">
<%= render partial: "shoutmsgs/shoutmsg", collection: Shoutmsg.recent.box, locals: { popup: "$('shoutbox')" } %>
2014-04-06 14:14:03 +00:00
</div>
</div>
<%= 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>
<script type="text/javascript">
2015-06-13 15:49:02 +00:00
$(document).ready(function () {
$.PeriodicalUpdater("/shoutmsgs/index.js", {
method: "GET",
type: "script",
minTimeout: 20000,
multiplier: 3,
maxTimeout: 300000
});
});
</script>