| D | StorageFile.js | 13 StorageFile = function(ui, data, title) argument 17 this.title = title; 76 return this.title; 107 StorageFile.prototype.saveAs = function(title, success, error) argument 110 this.saveFile(title, false, success, error); 119 StorageFile.insertFile = function(ui, title, data, success, error) argument 125 var file = new StorageFile(ui, data, title); 128 file.saveFile(title, false, function() 136 ui.confirm(mxResources.get('replaceIt', [title]), fn, error); 144 StorageFile.getFileContent(ui, title, function(data) [all …]
|