Lines Matching refs:success

2181 	EditorUi.prototype.loadDescriptor = function(desc, success, error)  argument
2266 if (success != null)
2268 success();
6662 EditorUi.prototype.getEmbeddedPng = function(success, error, optionalData, scale, border) argument
6729 success(data.substring(data.lastIndexOf(',') + 1));
7452 EditorUi.prototype.convertLucidChart = function(data, success, error) argument
7474 success(LucidImporter.importState(JSON.parse(data)));
7529 EditorUi.prototype.generateMermaidImage = function(data, config, success, error) argument
7580 success(ui.convertDataUri(Editor.createSvgDataUri(svg)), w, h);
7621 EditorUi.prototype.generatePlantUmlImage = function(data, type, success, error) argument
7721 success(this.response);
7755 success(reader.result, w, h);
14318 EditorUi.prototype.openDatabase = function(success, error) argument
14516 success(db);
14550 success(this.database);
14558 EditorUi.prototype.setDatabaseItem = function(key, data, success, error, storeName) argument
14574 trx.oncomplete = success;
14595 EditorUi.prototype.removeDatabaseItem = function(key, success, error, storeName) argument
14608 trx.oncomplete = success;
14621 EditorUi.prototype.getDatabaseItem = function(key, success, error, storeName) argument
14633 success(req.result);
14651 EditorUi.prototype.getDatabaseItems = function(success, error, storeName) argument
14667 success(items);
14691 EditorUi.prototype.getDatabaseItemKeys = function(success, error, storeName) argument
14703 success(req.result);
14755 EditorUi.prototype.getComments = function(success, error) argument
14761 file.getComments(success, error);
14765 success([]); //placeholder
14772 EditorUi.prototype.addComment = function(comment, success, error) argument
14778 file.addComment(comment, success, error);
14782 success(Date.now()); //placeholder
14838 EditorUi.prototype.getRevisions = function(success, error) argument
14844 file.getRevisions(success, error);
14877 …EditorUi.prototype.loadUrl = function(url, success, error, forceBinary, retry, dataUriPrefix, noBi… argument
14880 …return this.editor.loadUrl(url, success, error, forceBinary, retry, dataUriPrefix, noBinary, heade…