Lines Matching refs:data

1705 …tFiles(evt.dataTransfer.files, 0, 0, editorUi.maxBackgroundSize, function(data, mimeType, x, y, w,…  argument
1707 urlInput.value = data;
1775 ImageDialog.filePicked = function(data) argument
1777 if (data.action == google.picker.Action.PICKED)
1779 if (data.docs[0].thumbnails != null)
1781 var thumb = data.docs[0].thumbnails[data.docs[0].thumbnails.length - 1];
1911 function insertPlantUmlImage(text, format, data, w, h) argument
1920 editorUi.insertAsPreText(data, insertPoint.x, insertPoint.y) :
1923 'image=' + editorUi.convertDataUri(data) + ';')
1925 JSON.stringify({data: text, format: format},
1953 editorUi.generatePlantUmlImage(text, format, function(data, w, h) argument
1956 insertPlantUmlImage(text, format, data, w, h);
1971 editorUi.generateMermaidImage(text, format, function(data, w, h) argument
1982 'image=' + data + ';')
1984 JSON.stringify({data: text, config:
3962 allowTab, helpLink, showDeviceButton, rowLimit, data, mimeType, base64Encoded, hints, hideDialog) argument
4027 …if (urlParams['noDevice'] != '1' && data != null && mimeType != null && (mimeType.substring(0, 6) …
4032 var temp = (base64Encoded) ? data : btoa(unescape(encodeURIComponent(data)));
4751 …editorUi.importFiles(evt.dataTransfer.files, 0, 0, editorUi.maxImageSize, function(data, mimeType,… argument
4753 apply(data, resize);
4804 ImageDialog.filePicked = function(data) argument
4806 if (data.action == google.picker.Action.PICKED)
4808 if (data.docs[0].thumbnails != null)
4810 var thumb = data.docs[0].thumbnails[data.docs[0].thumbnails.length - 1];
4834 …editorUi.importFiles(fileInput.files, 0, 0, editorUi.maxImageSize, function(data, mimeType, x, y, … argument
4836 apply(data);
5228 LinkDialog.filePicked = function(data) argument
5230 if (data.action == google.picker.Action.PICKED)
5232 LinkDialog.selectedDocs = data.docs;
5233 var href = data.docs[0].url;
5235 if (data.docs[0].mimeType == 'application/mxe' || (data.docs[0].mimeType != null &&
5236 data.docs[0].mimeType.substring(0, 23) == 'application/vnd.jgraph.'))
5238 href = 'https://www.draw.io/#G' + data.docs[0].id;
5240 else if (data.docs[0].mimeType == 'application/vnd.google-apps.folder')
5243 href = 'https://drive.google.com/#folders/' + data.docs[0].id;
5287 editorUi.linkPicker = picker.setCallback(function(data) argument
5289 LinkDialog.filePicked(data);
5845 var data = mxUtils.getXml(currentDoc.documentElement);
5850 editorUi.saveLocalFile(data, filename, 'text/xml');
5854 var param = (typeof(pako) === 'undefined') ? '&xml=' + encodeURIComponent(data) :
5855 '&data=' + encodeURIComponent(Graph.compress(data));
6410 doc = mxUtils.parseXml(drafts[select.value].data);
6444 xml = drafts[0].data;
8967 function addButton(data, mimeType, x, y, w, h, img, aspect, title) argument
8976 if ((data == null && img != null) || entries[data] == null)
9011 if (data != null)
9014 elt.setAttribute('src', converter.convert(data));
9063 if ((images[i].data != null && images[i].data == dataParam) ||
9087 })(wrapper, data, img);
9104 if (data != null)
9106 entry = {data: data, w: w, h: h, title: title}; property in LibraryDialog.addButton.entry
9113 entries[data] = elt;
9228 if (data == null && img != null)
9282 var doc = mxUtils.parseXml(data);
9298 addButton(temp[i].data, null, 0, 0, temp[i].w, temp[i].h, null, 'fixed', temp[i].title);
9345 addButton(img.data, null, 0, 0, img.w, img.h, img, img.aspect, img.title);
9377 return function(data, mimeType, x, y, w, h, img, doneFn, file) argument
9387 …ditorUi.isOffline() && new XMLHttpRequest().upload && editorUi.isRemoteFileFormat(data, file.name))
9407 addButton(data, mimeType, x, y, w, h, img, 'fixed', (mxEvent.isAltDown(evt)) ?
9530 var data = editorUi.createLibraryDataFromImages(images);
9540 editorUi.saveLocalFile(data, filename, 'text/xml', null, null, true, null, 'xml');
9545 '&format=xml&xml=' + encodeURIComponent(data)).simulate(document, '_blank');
9565 …editorUi.importFiles(fileInput.files, 0, 0, editorUi.maxImageSize, function(data, mimeType, x, y, … argument
9569 createImportHandler(evt)(data, mimeType, x, y, w, h, img, doneFn, file);