append-hook

1.1.0 • Public • Published

append-hook Build Status

virtual-dom hook for element append

Install

$ npm install --save append-hook

Usage

var AppendHook = require('append-hook')
var h = require('virtual-dom/h')
 
var vtree = h('div', {
  onAppend: AppendHook(callback)  
})
 
function callback (node) {
  //=> div appended to the DOM
}

API

AppendHook(callback) -> object

callback

Required
Type: function

A callback to call when the virtual node is appended to the DOM as a real node.

License

MIT © Ben Drucker

Dependencies (3)

Dev Dependencies (3)

Package Sidebar

Install

npm i append-hook

Weekly Downloads

2

Version

1.1.0

License

MIT

Last publish

Collaborators

  • bendrucker