Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grimmlink/timingfield
A jquery plugin to transform a timestamp field into an hours/minutes/seconds selector.
https://github.com/grimmlink/timingfield
Last synced: about 2 months ago
JSON representation
A jquery plugin to transform a timestamp field into an hours/minutes/seconds selector.
- Host: GitHub
- URL: https://github.com/grimmlink/timingfield
- Owner: grimmlink
- Created: 2015-05-26T12:01:08.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2018-05-14T10:11:15.000Z (over 6 years ago)
- Last Synced: 2024-11-13T12:44:58.515Z (about 2 months ago)
- Language: JavaScript
- Size: 11.7 KB
- Stars: 4
- Watchers: 3
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
TimingField
=================A jquery plugin to transform a timestamp field into an hours/minutes/seconds selector.
Requirements
------------* jQuery
* Twitter BootstrapInstallation
------------Installation with composer :
```json
...
"require": {
...
"grimmlink/timingfield": "1.1",
...
},
...
```Configuration
-------------This is the current available configuration :
```javascript
$.fn.timingfield.defaults = {
maxHour: 23
width: 263,
hoursText: 'H',
minutesText: 'M',
secondsText: 'S',
hasSeconds: true
};
```Usage
-----```javascript
...
$('.timestamp').timingfield();
...
```