MCPcopy Index your code
hub / github.com/witheve/Eve / activeElt

Function activeElt

src/codemirror.js:8452–8457  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

8450 };
8451
8452 function activeElt() {
8453 var activeElement = document.activeElement;
8454 while (activeElement && activeElement.root && activeElement.root.activeElement)
8455 activeElement = activeElement.root.activeElement;
8456 return activeElement;
8457 }
8458 // Older versions of IE throws unspecified error when touching
8459 // document.activeElement in some cases (during loading, in iframe)
8460 if (ie && ie_version < 11) activeElt = function() {

Callers 6

updateDisplayIfNeededFunction · 0.85
codemirror.jsFile · 0.85
endOperation_W2Function · 0.85
leftButtonDownFunction · 0.85
extendFunction · 0.85
onKeyDownFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected