grimmlink / timingfield
A jquery plugin to transform a timestamp field into an hours/minutes/seconds selector.
Installs: 232
Dependents: 0
Suggesters: 0
Security: 0
Stars: 4
Watchers: 3
Forks: 4
Open Issues: 1
Language:JavaScript
Requires
- components/jquery: >=1.8.0
This package is auto-updated.
Last update: 2024-10-10 01:14:31 UTC
README
A jquery plugin to transform a timestamp field into an hours/minutes/seconds selector.
Requirements
- jQuery
- Twitter Bootstrap
Installation
Installation with composer :
... "require": { ... "grimmlink/timingfield": "1.1", ... }, ...
Configuration
This is the current available configuration :
$.fn.timingfield.defaults = { maxHour: 23 width: 263, hoursText: 'H', minutesText: 'M', secondsText: 'S', hasSeconds: true };
Usage
... $('.timestamp').timingfield(); ...