MCPcopy Index your code
hub / github.com/DHTMLX/gantt / signal

Function signal

samples/common/codehighlight/codemirror.js:564–569  ·  view source on GitHub ↗
(emitter, type /*, values...*/)

Source from the content-addressed store, hash-verified

562 }
563
564 function signal(emitter, type /*, values...*/) {
565 var handlers = getHandlers(emitter, type);
566 if (!handlers.length) { return }
567 var args = Array.prototype.slice.call(arguments, 2);
568 for (var i = 0; i < handlers.length; ++i) { handlers[i].apply(null, args); }
569 }
570
571 // The DOM events that CodeMirror handles can be overridden by
572 // registering a (non-DOM) handler on the editor for the event name,

Callers 12

signalDOMEventFunction · 0.85
buildLineContentFunction · 0.85
onFocusFunction · 0.85
onBlurFunction · 0.85
endOperation_finishFunction · 0.85
addChangeToHistoryFunction · 0.85
filterSelectionChangeFunction · 0.85
skipAtomicInnerFunction · 0.85
filterChangeFunction · 0.85
gutterEventFunction · 0.85
registerEventHandlersFunction · 0.85
addEditorMethodsFunction · 0.85

Calls 1

getHandlersFunction · 0.85

Tested by

no test coverage detected