Changeset 678


Ignore:
Timestamp:
02/25/10 20:23:46 (6 months ago)
Author:
fabman
Message:

IE UI fixes (prevent caching data that shouldn't be cacheable)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/com/calenco/staticres/workspace-html.ftl

    r677 r678  
    997997                dojo.query("#filesMenuBar").style("display", "none"); 
    998998                dojo.query("#filesTree").style("display", "none"); 
    999                 cdstore = new dojo.data.ItemFileReadStore({url: "/workspaces/${wksp}/classifications.json"}); 
     999                if (cdstore) { 
     1000                    cdstore.close(); 
     1001                } 
     1002                cdstore = new dojo.data.ItemFileReadStore({ 
     1003                    url: "/workspaces/${wksp}/classifications.json", 
     1004                    urlPreventCache: true, 
     1005                    clearOnClose: true 
     1006                }); 
    10001007                cmdl = new dijit.tree.ForestStoreModel({ 
    10011008                    store: cdstore, 
Note: See TracChangeset for help on using the changeset viewer.