Changeset 2736


Ignore:
Timestamp:
05/07/10 15:18:57 (14 years ago)
Author:
alexandrecorreia
Message:

Ticket #986 - Correcao para a visualizacao do status ( mensagem ) no Internet Explorer.

Location:
sandbox/jabberit_messenger/trophy_expresso
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sandbox/jabberit_messenger/trophy_expresso/js/jscode/loadIM.js

    r2719 r2736  
    824824                                 
    825825                                // Send Status Message 
     826                                _statusMessage = ( ( _statusMessage !=  "Digite aqui sua mensagem de Status") ? _statusMessage : "" );                           
     827                                 
    826828                                TrophyIM.setPresence("status", _statusMessage ); 
    827829                        }        
  • sandbox/jabberit_messenger/trophy_expresso/js/trophyim.js

    r2728 r2736  
    19431943     *    Status of storage attempt 
    19441944     */ 
    1945     this.setData = function(vars) { 
    1946         if (typeof(TROPHYIM_JSON_STORE) != undefined) { 
    1947             Strophe.debug("Storing JSONStore data"); 
     1945    this.setData = function(vars) 
     1946    { 
     1947        if ( typeof(TROPHYIM_JSON_STORE) != undefined ) 
     1948        { 
    19481949            var senddata = "set=" + JSON.stringify(vars); 
    19491950            var xhr = this._newXHR(); 
    1950             try { 
     1951            try 
     1952            { 
    19511953                xhr.open("POST", TROPHYIM_JSON_STORE, false); 
    1952             } catch (e) { 
     1954            } 
     1955            catch (e) 
     1956            { 
    19531957                Strophe.error("JSONStore open failed."); 
    19541958                return false; 
     
    19671971        } 
    19681972    } 
     1973     
    19691974    var testData = true; 
     1975     
    19701976    if (this.setData({testData:testData})) { 
    19711977        var testResult = this.getData(['testData']); 
  • sandbox/jabberit_messenger/trophy_expresso/xsl/contactsList.xsl

    r2711 r2736  
    1010        <xsl:template match="contacts_list"> 
    1111                 
    12                 <fieldset style="margin:2px; border:1px dotted #000000; height: 74pt;"> 
     12                <fieldset style="margin:2px; border:1px dotted #000000; height: 103px;"> 
    1313                        <div id="{$idUser}__photo" style="position: absolute; left: 5px; top: 5px; width:60px; height:80px; background-image:url('{$path_jabberit}/templates/default/images/photo.png');"/> 
    1414 
     
    3131                        </div> 
    3232                         
    33                         <div id="JabberIMRosterLoadingGif" style="position:absolute; left:136px; top:110px; display:block;"> 
     33                        <div id="JabberIMRosterLoadingGif" style="position:absolute; left:136px; top:118px; display:block;"> 
    3434                                        <img src='{$path_jabberit}/templates/default/images/loading.gif' style="width:20px; height:20px;"/> 
    3535                                        <span style="color:red;"> Carregando...!!</span> 
    3636                        </div> 
    3737                         
    38                         <div id="JabberIMStatusMessage" style="position:absolute; left:4px; top:90px; display:block;"> 
     38                        <div id="JabberIMStatusMessage" style="position:absolute; left:5px; top:90px; display:block; font:7pt !important;"> 
    3939                                <label style="cursor:pointer;" onclick="loadscript.setMessageStatus(this);">( Digite aqui sua mensagem de Status )</label> 
    4040                        </div> 
     
    4242                </fieldset> 
    4343                                 
    44                 <div id="JabberIMRoster" style="margin-top:3px;overflow-y: auto; height: 262px; z-index:{$zIndex_};"> 
    45                 </div> 
     44                <div id="JabberIMRoster" style="margin-top:2px; overflow-y:auto; height: 255px; z-index:{$zIndex_};"></div> 
    4645                  
    4746        </xsl:template> 
Note: See TracChangeset for help on using the changeset viewer.