2014-02-27 18:49:01 +00:00
|
|
|
{capture assign='roomList'}{include application='chat' file='boxRoomList' showEmptyRooms=false}{/capture}
|
2013-05-02 20:43:52 +00:00
|
|
|
|
2014-02-27 18:49:01 +00:00
|
|
|
<div id="chatDashboardBoxOnlineListContainer"{if !$roomList|trim} style="display: none;"{/if}>
|
|
|
|
<header class="boxHeadline boxSubHeadline">
|
|
|
|
<h2>{lang}chat.header.menu.chat{/lang}</h2>
|
|
|
|
</header>
|
2014-02-28 16:06:50 +00:00
|
|
|
|
2014-02-27 18:49:01 +00:00
|
|
|
<div class="container marginTop">
|
|
|
|
<ul class="containerList">
|
|
|
|
{@$roomList}
|
|
|
|
</ul>
|
2013-04-26 18:47:40 +00:00
|
|
|
</div>
|
2014-02-27 18:49:01 +00:00
|
|
|
<script data-relocate="true">
|
|
|
|
//<![CDATA[
|
|
|
|
(function($, window, undefined) {
|
|
|
|
proxy = new WCF.Action.Proxy({
|
|
|
|
data: {
|
|
|
|
actionName: 'getBoxRoomList',
|
|
|
|
className: 'chat\\data\\room\\RoomAction',
|
|
|
|
parameters: {
|
|
|
|
showEmptyRooms: 0
|
|
|
|
}
|
|
|
|
},
|
|
|
|
showLoadingOverlay: false,
|
|
|
|
suppressErrors: true,
|
|
|
|
success: function(data) {
|
|
|
|
if (data.returnValues.template) $('#chatDashboardBoxOnlineListContainer').show();
|
|
|
|
else $('#chatDashboardBoxOnlineListContainer').hide();
|
|
|
|
|
|
|
|
$('#chatDashboardBoxOnlineListContainer ul').html(data.returnValues.template);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
be.bastelstu.wcf.nodePush.onMessage('be.bastelstu.chat.join', $.proxy(proxy.sendRequest, proxy));
|
|
|
|
be.bastelstu.wcf.nodePush.onMessage('be.bastelstu.chat.leave', $.proxy(proxy.sendRequest, proxy));
|
|
|
|
})(jQuery, this);
|
|
|
|
//]]>
|
|
|
|
</script>
|
|
|
|
</div>
|