Lines Matching refs:id

45 …	evt.label += ((this.drive.user != null) ? ('-user_' + this.drive.user.id) : '-nouser') + '-rev_' +
1841 … evt.label += ((this.drive.user != null) ? ('-user_' + this.drive.user.id) : '-nouser') + '-rev_' +
2093 if (!this.isOffline() && !this.editor.chromeless && email != null && driveUser.id != null)
2099 var userId = Editor.crc32(driveUser.id);
2186 if (recent[i].id == entry.id)
2662 this.openLink('https://drive.google.com/drive/folders/' + file.desc.parents[0].id);
2776 var id = window.location.hash;
2779 if (id != null && id.length > 0)
2781 id = id.substring(1);
2785 if (id != null && id.length > 1 && id.charAt(0) == 'T')
2787 var idx = id.indexOf('#');
2791 id = id.substring(0, idx);
2795 return id;
3123 var id = this.getDiagramId();
3126 if (file == null || file.getHash() != id)
3128 this.loadFile(id, true);
3272 var id = this.getDiagramId();
3276 this.getServiceName() == 'draw.io' && (id == null || id.length == 0) &&
3281 else if (id != null && id.length > 0)
3283 this.loadFile(id, null, null, mxUtils.bind(this, function()
4076 peer.pickLibrary(mxUtils.bind(this, function(id, optionalFile) argument
4093 peer.getLibrary(id, mxUtils.bind(this, function(file)
5003 App.prototype.loadFile = function(id, sameWindow, file, success, force) argument
5014 if (id == null || id.length == 0)
5022 if (id.charAt(0) == 'L')
5045 id = decodeURIComponent(id.substring(1));
5047 StorageFile.getFileContent(this, id, mxUtils.bind(this, function(data)
5051 this.fileLoaded(new StorageFile(this, data, id));
5076 else if (id.charAt(0) == 'S')
5080 …ation] #S is no longer supported, go to https://app.diagrams.net/?desc=' + id.substring(1).substri…
5082 window.location.href = 'https://app.diagrams.net/?desc=' + id.substring(1);
5085 else if (id.charAt(0) == 'R')
5089 var data = decodeURIComponent(id.substring(1));
5100 return id;
5109 else if (id.charAt(0) == 'E') // Embed file
5135 else if (id.charAt(0) == 'U')
5137 var url = decodeURIComponent(id.substring(1));
5234 return id;
5271 if (id.charAt(0) == 'G')
5275 else if (id.charAt(0) == 'D')
5279 else if (id.charAt(0) == 'W')
5283 else if (id.charAt(0) == 'H')
5287 else if (id.charAt(0) == 'A')
5291 else if (id.charAt(0) == 'T')
5295 else if (id.charAt(0) == 'N')
5310 var peerChar = id.charAt(0);
5311 id = decodeURIComponent(id.substring(1));
5313 peer.getFile(id, mxUtils.bind(this, function(file)
5329 return peerChar + id;
5352 console.log('error in loadFile:', id, resp);
5368 }), null, null, '#' + peerChar + id);
5395 if (id == null || id.length == 0)
5401 this.showDialog(new PopupDialog(this, this.getUrl() + '#' + id,
5481 var ignore = mxUtils.bind(this, function(id, keep) argument
5485 mxSettings.removeCustomLibrary(id);
5488 delete this.pendingLibraries[id];
5523 (mxUtils.bind(this, function(id, index) argument
5525 if (id != null && id.length > 0 && this.pendingLibraries[id] == null &&
5526 this.sidebar.palettes[id] == null)
5533 delete this.pendingLibraries[id];
5541 ignore(id, keep);
5546 this.pendingLibraries[id] = true;
5547 var service = id.substring(0, 1);
5558 var name = decodeURIComponent(id.substring(1));
5586 var url = decodeURIComponent(id.substring(1));
5609 var libDesc = decodeURIComponent(id.substring(1));
5615 id: libDesc[0], property in AnonymousFunctione4ed41c2c600.libObj
5644 this.loadDesktopLib(decodeURIComponent(id.substring(1)), function(desktopLib)
5696 peer.getLibrary(decodeURIComponent(id.substring(1)), mxUtils.bind(this, function(file)
6224 folderId = evt.docs[0].id;
7207 tr.setAttribute('title', 'User ID: ' + user.id);