2014-03-23 00:22:25 +00:00
|
|
|
<script type="text/javascript">
|
|
|
|
$(document).ready(function(){
|
2014-04-05 00:03:13 +00:00
|
|
|
$.PeriodicalUpdater("/shoutmsgs/<%= object.class.to_s %>.js?id2=<%= object.id %>", {
|
|
|
|
method: "GET",
|
|
|
|
type: "script",
|
|
|
|
minTimeout: 10000,
|
|
|
|
multiplier: 2
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
2014-03-23 00:22:25 +00:00
|
|
|
|
2014-04-15 09:59:52 +00:00
|
|
|
<% shoutmsg_new = Shoutmsg.new(shoutable_type: object.class.to_s, shoutable_id: object.id) %>
|
2014-03-23 00:22:25 +00:00
|
|
|
|
2014-04-15 09:59:52 +00:00
|
|
|
<div id="<%= shoutmsg_new.domain %>" class="shoutbox-messages">
|
|
|
|
<%= render partial: "shoutmsgs/shoutmsg", collection: object.shoutmsgs.recent.reverse, locals: { popup: 'this' } %>
|
2014-04-05 00:03:13 +00:00
|
|
|
</div>
|
2014-03-23 00:22:25 +00:00
|
|
|
|
2014-04-15 09:59:52 +00:00
|
|
|
<%= render partial: "shoutmsgs/new", locals: { shoutmsg: shoutmsg_new, popup: "this" } %>
|