Show
Ignore:
Timestamp:
06/02/07 12:15:43 (18 months ago)
Author:
BradNeuberg
Message:

Building up code to handle if user presses the Deny button for Google Gears during a core operation so that we can fail fast and have an appropriate UI response

Location:
branches/dot_experiment
Files:
3 modified

Legend:

Unmodified
Added
Removed
  • branches/dot_experiment/demos/offline/moxie/editor.html

    r8870 r8879  
    1010                var djConfig =  
    1111                                                {  
    12                                                         isDebug: true, 
     12                                                        isDebug: false, 
    1313                                                        baseRelativePath: "../../../",  
    1414                                                        parseWidgets: false,  
  • branches/dot_experiment/src/off.js

    r8875 r8879  
    184184                //      Causes the Dojo Offline framework to load its configuration data 
    185185                //      from local storage 
    186                 //dojo.sync.load(finishedCallback); 
     186                dojo.sync.load(finishedCallback); 
    187187        }, 
    188188         
     
    332332                // this method is part of our _onLoad series of startup tasks 
    333333                dojo.debug("hasOfflineCache="+this.hasOfflineCache); 
     334                dojo.debug("coreOperationFailed="+this.coreOperationFailed); 
     335                dojo.debug("enabled="+this.enabled); 
    334336                 
    335337                // if we have an offline cache, see if we have been added to the  
  • branches/dot_experiment/src/off/ui.js

    r8875 r8879  
    170170                // 1 second 
    171171                if(dojo.sync.autoSync == true){ 
    172                         //window.setTimeout(dojo.lang.hitch(dojo.sync, dojo.sync.synchronize), 1000); 
     172                        window.setTimeout(dojo.lang.hitch(dojo.sync, dojo.sync.synchronize), 1000); 
    173173                } 
    174174        },