Lines Matching refs:msg

3910 			var msg = mxUtils.htmlEntities(mxResources.get('unknownError'));
3933 msg = mxUtils.htmlEntities(e.message);
3937 msg = mxUtils.htmlEntities(mxResources.get('accessDenied'));
3942 msg = (notFoundMessage != null) ? notFoundMessage :
3963 this.showError(title, msg, mxResources.get('openInNewWindow'), mxUtils.bind(this, function()
4058 msg = mxUtils.htmlEntities(e.name);
4062 msg = mxUtils.htmlEntities(e.message);
4067 msg = mxUtils.htmlEntities(e.response.error);
4073 msg = mxUtils.htmlEntities(mxResources.get('timeout'));
4077 msg = mxUtils.htmlEntities(mxResources.get('busy'));
4081 msg = mxUtils.htmlEntities(e);
4102 msg += mxUtils.htmlEntities(' (' + btn3 + ': ' + e.ownerEmail + ')');
4110 this.showError(title, msg, btn, fn, retry, null, null, btn3, fn3,
4125 EditorUi.prototype.alert = function(msg, fn, optionalWidth) argument
4127 var dlg = new ErrorDialog(this, null, msg, mxResources.get('ok'), fn);
4138 EditorUi.prototype.confirm = function(msg, okFn, cancelFn, okLabel, cancelLabel, closable) argument
4141 var height = Math.min(200, Math.ceil(msg.length / 50) * 28);
4143 var dlg = new ConfirmDialog(this, msg, function()
12060 var msg = (data.messageKey != null) ? mxResources.get(data.messageKey) : data.message;
12068 this.spinner.spin(document.body, msg)
12110 var msg = this.createLoadMessage('export');
12111 msg.format = data.format;
12112 msg.message = data;
12113 msg.data = uri;
12114 msg.xml = xml;
12115 parent.postMessage(JSON.stringify(msg), '*');
12275 var msg = this.createLoadMessage('export');
12278 msg.message = data;
12285 msg.xml = mxUtils.getXml(node);
12286 msg.data = this.getFileData(null, null, true, null, null, null, node);
12287 msg.format = data.format;
12292 msg.data = this.getHtml(xml, this.editor.graph);
12293 msg.xml = mxUtils.getXml(xml);
12294 msg.format = data.format;
12308 msg.xml = this.getFileData(true, null, null, null, null,
12310 msg.format = 'svg';
12317 msg.data = Editor.createSvgDataUri(svg);
12318 parent.postMessage(JSON.stringify(msg), '*');
12326 this.getEmbeddedSvg(msg.xml, this.editor.graph, null, true, postResult, null, null,
12365 parent.postMessage(JSON.stringify(msg), '*');
12607 var msg = this.createLoadMessage('autosave');
12608 msg.xml = data;
12610 parent.postMessage(JSON.stringify(msg), '*');
12704 …var msg = (urlParams['proto'] == 'json') ? JSON.stringify({event: 'init'}) : (urlParams['ready'] |…
12705 parent.postMessage(msg, '*');
14160 EditorUi.prototype.handleRemoteInvokeResponse = function(msg) argument
14162 var msgMarkers = msg.msgMarkers;
14169 else if (msg.error)
14171 if (callback.error) callback.error(msg.error.errResp);
14175 callback.callback.apply(this, msg.resp);
14214 …var msg = JSON.stringify({event: 'remoteInvoke', funtionName: remoteFn, functionArgs: remoteFnArgs…
14218 this.remoteWin.postMessage(msg, '*');
14222 this.remoteInvokeQueue.push(msg);
14226 EditorUi.prototype.handleRemoteInvoke = function(msg, origin) argument
14230 var respMsg = {event: 'remoteInvokeResponse', msgMarkers: msg.msgMarkers};
14247 var funtionName = msg.funtionName;
14272 var functionArgs = msg.functionArgs;