Changeset 1317 for platform/prism

Show
Ignore:
Timestamp:
11/12/07 12:43:28 (6 years ago)
Author:
tokuhirom
Message:

prism/wassr: remove sidemenu, and added reload feature.

Location:
platform/prism/wassr
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • platform/prism/wassr/src/webapp.css

    r1261 r1317  
    1 #Header { display: none !important; } 
    2 #globalmenu { display: none !important; } 
    3 #Footer { display: none !important; } 
     1#Header, 
     2#globalmenu, 
     3#Footer, 
     4#My #BloMotion, 
     5#Home .sideQR, 
     6.PageBody-shd, 
     7#Home #SideMainMenu, 
     8.centerbanner, 
     9#MoreMoreLink1, 
     10#SideMainMenu { 
     11    display: none !important; 
     12} 
    413 
    5 #My #BloMotion { display: none !important; } 
    6 #Home .sideQR  { display: none !important; } 
    7 .PageBody-shd  { display: none !important; } 
     14#GotoMyPageLink { display: block !important; } 
    815 
    916#PageBody #BodyWrapper #Main { 
     
    5562#PageBody #BodyWrapper #Side #SideLabs, 
    5663#PageBody #BodyWrapper #Side #SideOdai, 
     64#PageBody #BodyWrapper #Side #SideNews, 
    5765#PageBody #BodyWrapper #Side .sideQR 
    5866{ 
  • platform/prism/wassr/src/webapp.js

    r1260 r1317  
    11// kick the api. 
    22function startup() { 
     3    Wassr.startup(); 
    34} 
    45function shutdown() { 
     6    Wassr.shutdown(); 
    57} 
    68function dropFiles(uris) { 
    79} 
    810 
     11var Wassr = { 
     12    _timer : null, 
     13 
     14    _doTimer : function() { 
     15        host.getBrowser().contentWindow.document.location.reload(); 
     16    }, 
     17 
     18    startup : function() { 
     19        this._timer = setInterval(Wassr._doTimer, 60*1000); 
     20    }, 
     21 
     22    shutdown : function() { 
     23        if (this._timer) { 
     24            clearInterval(this._timer); 
     25        } 
     26    } 
     27};