Changeset 2809
- Timestamp:
- 11/12/07 04:10:35 (11 months ago)
- Files:
-
- 1 modified
-
Trunk/core/js/main.js (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Trunk/core/js/main.js
r2714 r2809 13 13 var hadConfirmExit = false; // Don't warn more than once 14 14 var safeMode = false; // Disable all plugins and cookies 15 var showBackstage; // Whether to include the backstage area 15 16 var installedPlugins = []; // Information filled in when plugins are executed 16 17 var startingUp = false; // Whether we're in the process of starting up … … 45 46 t4 = new Date(); 46 47 readOnly = (window.location.protocol == "file:") ? false : config.options.chkHttpReadOnly; 48 showBackstage = !readOnly; 47 49 var pluginProblem = loadPlugins(); 48 50 t5 = new Date(); … … 63 65 } 64 66 t9 = new Date(); 65 if( !readOnly)67 if(showBackstage) 66 68 backstage.init(); 67 69 t10 = new Date();
