popup-clock

Popup timepicker component


Keywords
browser
License
MIT
Install
npm install popup-clock@1.3.2

Documentation

NPM version Build Status Dependency Status

popup-clock

Time picker ui component for popup-clock

Click here to see online demo.

Installation

$ npm install popup-clock

Example

var Timepicker = require('popup-clock');
var el = document.querySelector('[name=time]');
new Timepicker(el, options)
  .clock
  .on('change', function(v) {
    el.value = (v.hour || '0') + ':' + (v.minute || '00');
  });

API

new Timepicker(el)

Create a new Timepicker attached to el input DOM node

Timepicker.clock

clock reference

License

MIT