Changeset 756
- Timestamp:
- 09/20/06 12:56:12 (2 years ago)
- Location:
- Branches/2.1/core/js
- Files:
-
- 2 modified
Legend:
- Unmodified
- Added
- Removed
-
Branches/2.1/core/js/Macros.js
r717 r756 859 859 config.macros.refreshDisplay.onClick = function(e) 860 860 { 861 refreshPageTemplate(); 862 refreshDisplay(); 863 refreshStyles("StyleSheetLayout"); 864 refreshStyles("StyleSheetColors"); 865 refreshStyles("StyleSheet"); 866 refreshStyles("StyleSheetPrint"); 861 refreshAll(); 867 862 return false; 868 863 } -
Branches/2.1/core/js/main.js
r684 r756 14 14 var safeMode = false; // Disable all plugins and cookies 15 15 var installedPlugins = []; // Information filled in when plugins are executed 16 var startingUp = false; // Whether we're in the process of starting up 16 17 17 18 // Whether to use the JavaSaver applet … … 22 23 { 23 24 var now, then = new Date(); 25 startingUp = true; 24 26 window.onbeforeunload = function(e) {if(window.confirmExit) return confirmExit();}; 25 27 params = getParameters(); … … 50 52 now = new Date(); 51 53 displayMessage("TiddlyWiki startup in " + (now-then) + " milliseconds"); 54 startingUp = false; 52 55 } 53 56
