Lines Matching refs:id

1898 						model.setVisible(child, layerIdsMap[child.id] || false);
2375 console.log('Error in value for ' + cell.id + ': ' + e);
2393 console.log('Error in style for ' + cell.id + ': ' + e);
2421 console.log('Error in icon for ' + cell.id + ': ' + e);
2474 console.log('Error in icon for ' + cell.id + ': ' + e);
2738 this.addRecent({id: file.getHash(), title: file.getTitle(), mode: file.getMode()});
3044 EditorUi.prototype.removeLibrarySidebar = function(id) argument
3046 var elts = this.sidebar.palettes[id];
3055 delete this.sidebar.palettes[id];
3948 …var id = (notFoundMessage != null) ? null : ((fileHash != null) ? fileHash : window.location.hash);
3952 if (id != null && (id.substring(0, 2) == '#G' ||
3953 id.substring(0, 45) == '#Uhttps%3A%2F%2Fdrive.google.com%2Fuc%3Fid%3D') &&
3960id = (id.substring(0, 2) == '#U') ? id.substring(45, id.lastIndexOf('%26ex')) : id.substring(2);
3965 this.editor.graph.openLink('https://drive.google.com/open?id=' + id);
4168 EditorUi.prototype.showBanner = function(id, text, onclick, doNotShowAgainOnClose) argument
4172 if (!this.bannerShowing && !this['hideBanner' + id] &&
4174 mxSettings.settings['close' + id] == null))
4230 this['hideBanner' + id] = true;
4234 mxSettings.settings['close' + id] = Date.now();
5220 var id = 'geCheckbox-' + Editor.guid();
5221 cb.id = id;
5245 lbl.setAttribute('for', id);
11586 for (var id in cells)
11588 var cell = cells[id];
11944 }), null, null, user != null? user.id : null,
12202 graphModel.setVisible(layers[i], layerIdsMap[layers[i].id] || false);
13129 var id = (identityIndex != null) ? namespace + values[identityIndex] : null;
13131 if (id != null)
13133 cell = graph.model.getCell(id);
13140 newCell.id = id;
13269 if (dups[id] == null)
13271 dups[id] = [];
13274 dups[id].push(cell);
13396 if (dups[cell.id] != null)
13398 for (var j = 0; j < dups[cell.id].length; j++)
13400 insertEdge(cell, dups[cell.id][j], edge);
14024 id: libDesc[0], property in EditorUi.showRemotelyStoredLibrary.loadedLibs
14048 if (loadedLibs[lib.id])
14050 selectedLibs[lib.id] = lib;
14053 var libCheck = this.addCheckbox(libsSection, lib.title, loadedLibs[lib.id]);
14061 selectedLibs[lib2.id] = lib2;
14065 delete selectedLibs[lib2.id];
14090 for (var id in selectedLibs)
14092 if (loadedLibs[id] != null) continue; //already loaded!
14120 }))(selectedLibs[id]);
14123 for (var id in loadedLibs)
14125 if (!selectedLibs[id]) //Removed
14127 …this.closeLibrary(new RemoteLibrary(this, null, loadedLibs[id])); //create a dummy library such th…
15191 cdiv.setAttribute('data-commentId', comment.id);
15218 dateDiv.setAttribute('data-commentId', comment.id);
15289 newReply.pCommentId = comment.id;
15299 comment.addReply(newReply, function(id) argument
15301 newReply.id = id;
15344 if (user != null && user.id == comment.user.id && !readOnly && !comment.isLocked)
15494 if (curEdited.comment.id == comment.id)
15501 else if (curEdited.comment.id == null && curEdited.comment.pCommentId == comment.id)
15528 editorUi.addComment(newComment, function(id) argument
15530 newComment.id = id;
15688 if (curEdited != null && curEdited.comment.id == null && curEdited.comment.pCommentId == null)
15727 var div = modDateDivsMap[comment.id];