ericjgagnon / wickedpicker

A simple jQuery timepicker
http://ericjgagnon.github.io/wickedpicker/
MIT License
93 stars 78 forks source link

Add an option to remove the spaces in the formatted value #42

Closed bokub closed 7 years ago

bokub commented 7 years ago

Issue

Currently, the value picked with the picker has spaces in it:

$('.timepicker').wickedpicker();

$('.timepicker').val(); // "16 : 13 : 07"

It would be great to be able to remove those spaces, with an option at the initialisation.

Example:

$('.timepicker').wickedpicker({
  showSpaces: false // Show spaces in formatted time, defaults to true
});

$('.timepicker').val(); // "16:13:07"
bokub commented 7 years ago

Looks like this has been solved by #43