2.0.1 • Published 8 years ago

copy-input v2.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

copy-input Build Status

Render an input that auto-selects and copies when clicked

Install

$ npm install --save copy-input

Usage

var CopyInput = require('copy-input')

var state = CopyInput()
var options = {
  style: {
    background: 'blue'
  },
  value: 'copy me!'
}
CopyInput.render(state, options)
//=> ...
//=> renders blue readonly input that copies itself when clicked

API

CopyInput() -> function

Returns an observable value representation (state).

CopyInput.render(state, options) -> object

Renders the copy input to a vtree. options.value is displayed in the input field.

License

MIT © Ben Drucker