@zkochan/pnpm
Version:
A fast implementation of npm install
16 lines (10 loc) • 319 B
Markdown
# Cancelling
You can cancel an initialization by returning `false`. This makes it so that the initialization will run again when `init` is triggered again.
This is also available for exit callbacks.
```js
$.onmount('.expandable-nav', function () {
if ($(this).is(':hidden')) return false
/* ... */
})
```
<br>