Socket
Socket
Sign inDemoInstall

clock-input

Package Overview
Dependencies
5
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    clock-input

widget to select time


Version published
Weekly downloads
3
increased by200%
Maintainers
1
Created
Weekly downloads
 

Readme

Source

clock-input

clock-like time input control

clock input

install

npm install clock-input

use

var ClockInput = require('clock-input');

var clock = ClockInput(document.querySelector('#clock'));

// set the hour/minute off the passed in date
clock.set_time(new Date());

clock.on('change', function(date) {
    date.getHours();
    date.getMinutes();
});

Package via browserify or your other favorite bundler.

api

ClockInput(HTMLElement)

return a new clock-input object created inside of the element you provide

ClockInput.set_time(date)

Set the input time to the date's time

events

The following events are emitted as ClockInput is an Emitter

change(date)

Change gets a date parameter with the newly selected time. Is also emitted when you explicitly set the time via set_time.

Keywords

FAQs

Last updated on 30 Aug 2013

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc