source: sandbox/jabberit_messenger/trophy/xsl/chatBox.xsl @ 2293

Revision 2293, 860 bytes checked in by alexandrecorreia, 14 years ago (diff)

Ticket #986 - Implementado recebimento das mensagens dentro das janelas.

  • Property svn:executable set to *
Line 
1<?xml version="1.0" encoding="ISO-8859-1"?>
2<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3        <xsl:output method="html" omit-xml-declaration="yes"/>
4       
5        <xsl:param name="idChatBox" />
6
7        <xsl:template match="chat_box">
8               
9                        <div>
10                                <div id="{$idChatBox}" style="height:190px; width:370px; overflow-y:scroll"></div>
11                                <div style="margin:2px;">
12                                        <form name="chat" onsubmit="TrophyIM.sendMessage(this); return(false);">
13                                                <div style="margin-top:0px; width:70px; height:93px; position:relative; float:right; background-image:url('images/photo.png');"></div>
14                                                <textarea class="trophyimchatinput" rows="5" cols="38"/>
15                                        </form>
16                                </div>
17                                <div style="margin-left:2px;">
18                                        <input type="button" value="Send" onclick="TrophyIM.sendMessage(this)"/>
19                                </div>
20                        </div>                 
21                 
22        </xsl:template>
23       
24</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.