MCPcopy Index your code
hub / github.com/docsifyjs/docsify / on

Function on

src/core/util/dom.js:75–79  ·  view source on GitHub ↗
(el, type, handler)

Source from the content-addressed store, hash-verified

73}
74
75export function on(el, type, handler) {
76 isFn(type)
77 ? window.addEventListener(el, type)
78 : el.addEventListener(type, handler);
79}
80
81export function off(el, type, handler) {
82 isFn(type)

Callers 3

onchangeMethod · 0.90
onchangeMethod · 0.90
initEventMethod · 0.90

Calls 1

isFnFunction · 0.90

Tested by

no test coverage detected