Changeset 6451
- Timestamp:
- 08/21/08 14:23:46 (5 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
Trunk/verticals/tiddlywiki.com/plugins/DownloadTiddlyWikiPlugin.js
r6428 r6451 31 31 // display the tiddler containing the instructions 32 32 var e = ev || window.event; 33 var title ;33 var title = "Installation"; 34 34 if(config.browser.isMac) { 35 35 if(config.browser.isSafari) { … … 37 37 } else if(config.browser.isOpera) { 38 38 title = "Installation guidelines: Opera on Mac OS X"; 39 } else {39 } else if(config.browser.isGecko) { 40 40 title = "Installation guidelines: Firefox on Mac OS X"; 41 41 } … … 43 43 if(config.browser.isIE) { 44 44 title = "Installation guidelines: Internet Explorer on Windows Vista"; 45 } else {45 } else if(config.browser.isGecko) { 46 46 title = "Installation guidelines: Firefox on Windows Vista"; 47 47 } 48 } else { 49 title = "Installation guidelines: Firefox on Ubuntu"; 48 } else if(config.browser.isLinux) { 49 if(config.browser.isGecko) { 50 title = "Installation guidelines: Firefox on Ubuntu"; 51 } 50 52 } 51 53 var url = config.browser.isSafari || config.browser.isOpera ? 'http://www.tiddlywiki.com/empty.zip' :'http://www.tiddlywiki.com/empty.download';
