Changeset 1319

Show
Ignore:
Timestamp:
03/31/07 21:39:48
Author:
johnsa
Message:

user client: added the ability to cancel going to inbox when alerted of new meeting requests

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/deployment/webuser/webapp/resources/demoskins/default/default/default.xsl

    r1317 r1319  
    379379      function checkStatus(inboxCount,changed,url) { 
    380380        if (inboxCount && changed) { 
    381         alert("You have " + inboxCount + " pending meeting requests."); 
    382         window.location.replace(url); 
     381          if (confirm("You have " + inboxCount + " pending meeting requests.\nGo to inbox?")) { 
     382            window.location.replace(url); 
     383          } 
    383384        } 
    384385      }