Lines Matching refs:mimeType

3464 …nsfer.files, 0, 0, this.maxImageSize, mxUtils.bind(this, function(data, mimeType, x, y, w, h, img,…  argument
3466 if (data != null && mimeType.substring(0, 6) == 'image/')
3586 doImport(data, mimeType);
4399 …EditorUi.prototype.doSaveLocalFile = function(data, filename, mimeType, base64Encoded, format, def… argument
4403 if (mimeType == 'text/xml' &&
4417 this.base64ToBlob(data, mimeType) :
4418 new Blob([data], {type: mimeType})
4441 if (!navigator.standalone && mimeType != null && mimeType.substring(0, 6) == 'image/')
4443 this.openInNewWindow(data, mimeType, base64Encoded);
4472 this.base64ToBlob(data, mimeType) :
4473 new Blob([data], {type: mimeType}));
4504 var req = this.createEchoRequest(data, filename, mimeType, base64Encoded, format);
4517 …EditorUi.prototype.createEchoRequest = function(data, filename, mimeType, base64Encoded, format, b… argument
4523 ((mimeType != null) ? '&mime=' + mimeType : '') +
4569 …EditorUi.prototype.saveLocalFile = function(data, filename, mimeType, base64Encoded, format, allow… argument
4589 if (mimeType != null && mimeType.substring(0, 6) == 'image/')
4591 this.openInNewWindow(data, mimeType, base64Encoded);
4593 else if (mimeType != null && mimeType.substring(0, 9) == 'text/html')
4616 this.doSaveLocalFile(data, newTitle, mimeType, base64Encoded, null, defaultExtension);
4624 this.exportFile(data, newTitle, mimeType, base64Encoded, mode, folderId);
4641 null, count > 1, rowLimit, data, mimeType, base64Encoded);
4650 EditorUi.prototype.openInNewWindow = function(data, mimeType, base64Encoded) argument
4660 if (mimeType == 'image/svg+xml' && !mxClient.IS_SVG)
4668 if (mimeType == 'image/svg+xml')
4677 mimeType + ';base64,' + temp + '"/></html>');
4969 …EditorUi.prototype.saveRequest = function(filename, format, fn, data, base64Encoded, mimeType, all… argument
4998 mimeType = (mimeType != null) ? mimeType : ((format == 'pdf') ?
5007 this.exportFile(data, newTitle, mimeType, true, mode, folderId);
5026 this.exportFile(xhr.getText(), newTitle, mimeType, true, mode, folderId);
5051 null, count > 1, rowLimit, data, mimeType, base64Encoded);
5078 EditorUi.prototype.exportFile = function(data, filename, mimeType, base64Encoded, mode, folderId) argument
9601 …this.importFiles(evt.dataTransfer.files, 0, 0, this.maxImageSize, function(data, mimeType, x, y, w… argument
9985 … this.importFiles([item.getAsFile()], 0, 0, this.maxImageSize, function(data, mimeType, x, y, w, h) argument