Changeset 4019
- Timestamp:
- 17/03/08 15:50:47 (6 months ago)
- Files:
-
- Trunk/core/js/FileAdaptor.js (modified) (1 diff)
- Trunk/core/js/Import.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
Trunk/core/js/FileAdaptor.js
r3558 r4019 11 11 12 12 FileAdaptor.serverType = 'file'; 13 FileAdaptor.serverLabel = 'TiddlyWiki'; 13 14 14 15 FileAdaptor.prototype.setContext = function(context,userParams,callback) Trunk/core/js/Import.js
r3558 r4019 27 27 var s = wizard.getElement("selTypes"); 28 28 for(var t in config.adaptors) { 29 var e = createTiddlyElement(s,"option",null,null, t);29 var e = createTiddlyElement(s,"option",null,null,config.adaptors[t].serverLabel ? config.adaptors[t].serverLabel : t); 30 30 e.value = t; 31 31 }