Changeset 755
- Timestamp:
- 09/20/06 12:54:44 (2 years ago)
- Location:
- Branches/2.1/core/js
- Files:
-
- 2 modified
-
Config.js (modified) (2 diffs)
-
Refresh.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
Branches/2.1/core/js/Config.js
r713 r755 49 49 {name: "SiteTitle", notify: refreshPageTitle}, 50 50 {name: "SiteSubtitle", notify: refreshPageTitle}, 51 {name: "ColorPalette", notify: refreshColorPalette}, 51 52 {name: null, notify: refreshDisplay} 52 53 ]; … … 177 178 178 179 config.shadowTiddlers = { 179 ColorPalette: "<<refreshDisplay>>\n" + 180 "Background: #fff\n" + 180 ColorPalette: "Background: #fff\n" + 181 181 "Foreground: #000\n" + 182 182 "PrimaryPale: #8cf\n" + -
Branches/2.1/core/js/Refresh.js
r686 r755 141 141 } 142 142 143 function refreshColorPalette(title) 144 { 145 if(!startingUp) 146 refreshAll(); 147 } 148 149 function refreshAll() 150 { 151 refreshPageTemplate(); 152 refreshDisplay(); 153 refreshStyles("StyleSheetLayout"); 154 refreshStyles("StyleSheetColors"); 155 refreshStyles("StyleSheet"); 156 refreshStyles("StyleSheetPrint"); 157 } 158
