Browse Source
- Continue chatroom implementation
- Continue chatroom implementation
- Add user list Dialog box for the chatroomspull/16/head
15 changed files with 76 additions and 242 deletions
-
1app/views/page.tpl
-
5app/widgets/Chat/_chat_header_room.tpl
-
4app/widgets/Chat/chat.css
-
4app/widgets/Chat/chat.js
-
4app/widgets/Chats/Chats.php
-
2app/widgets/Chats/chats.js
-
234app/widgets/Login/login.css
-
4app/widgets/Login/login.tpl
-
13app/widgets/Rooms/Rooms.php
-
24app/widgets/Rooms/_rooms_list.tpl
-
1app/widgets/Rooms/locales.ini
-
2locales/locales.ini
-
14themes/material/css/color.css
-
2themes/material/css/form.css
-
4themes/material/css/style.css
@ -0,0 +1,24 @@ |
|||
<section class="scroll"> |
|||
<h3>{$c->__('chatrooms.users')}</h3> |
|||
<br /> |
|||
<ul class="active"> |
|||
{loop="$list"} |
|||
<li onclick="Chats_ajaxOpen('{$value->jid}/{$value->resource}'); Dialog.clear();"> |
|||
<span class="icon bubble color {$value->resource|stringToColor}"> |
|||
{$value->resource|firstLetterCapitalize} |
|||
</span> |
|||
{if="$value->mucaffiliation =='owner'"} |
|||
<div class="control"> |
|||
<i class="md md-beenhere"></i> |
|||
</div> |
|||
{/if} |
|||
<span>{$value->resource}</span> |
|||
</li> |
|||
{/loop} |
|||
</ul> |
|||
</section> |
|||
<div class="no_bar"> |
|||
<a onclick="Dialog.clear()" class="button flat"> |
|||
{$c->__('button.cancel')} |
|||
</a> |
|||
</div> |
|||
Write
Preview
Loading…
Cancel
Save
Reference in new issue