Changeset 3683

Show
Ignore:
Timestamp:
07/02/07 07:42:22 (1 year ago)
Author:
timothy
Message:

Show actions right in the main screen preview.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Plug-Ins/Web Interface/Resources/iphone/iphone.js

    r3680 r3683  
    504504 
    505505        var senderNode = document.createElement("b"); 
    506         senderNode.textContent = sender.firstChild.nodeValue + ": "; 
     506        if( message.getAttribute( "action" ) ) 
     507                senderNode.textContent = "\u2022" + sender.firstChild.nodeValue + " "; 
     508        else senderNode.textContent = sender.firstChild.nodeValue + ": "; 
    507509 
    508510        preview.appendChild(senderNode);