Changeset 4935
- Timestamp:
- 14/05/08 11:34:19 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Trunk/contributors/SimonBaird/mptw/trunk/core/MptwConfigPlugin.js
r4907 r4935 19 19 config.views.editor.defaultText = ""; // don't need message when creating a new tiddler 20 20 21 config.options.chkAutoSave = true; // do autosave22 21 config.options.chkSaveBackups = true; // do save backups 23 22 config.options.txtBackupFolder = 'twbackup'; // put backups in a backups folder 24 23 25 config.mptwVersion = "2.4.0"; 24 config.options.chkAutoSave = (window.location.protocol == "file:"); // do autosave if we're in local file 25 26 config.mptwVersion = "2.4.1"; 26 27 27 28 config.macros.mptwVersion={handler:function(place){wikify(config.mptwVersion,place);}};