MCPcopy
hub / github.com/nwutils/nw-sample-apps / e_prop

Function e_prop

mini-code-edit/cm/lib/codemirror.js:2854–2857  ·  view source on GitHub ↗
(e, prop)

Source from the content-addressed store, hash-verified

2852 // Allow 3rd-party code to override event properties by adding an override
2853 // object to an event object.
2854 function e_prop(e, prop) {
2855 var overridden = e.override && e.override.hasOwnProperty(prop);
2856 return overridden ? e.override[prop] : e[prop];
2857 }
2858
2859 // Event handler registration. If disconnect is true, it'll return a
2860 // function that unregisters the handler.

Callers 6

onMouseDownFunction · 0.85
handleKeyBindingFunction · 0.85
onKeyDownFunction · 0.85
onKeyPressFunction · 0.85
onKeyUpFunction · 0.85
isModifierKeyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected