Description
if you add class into slect;it will be beautiful
// select methods
select: {
create: function (tp_inst, obj, unit, val, min, max, step) {
var sel = '',
format = tp_inst._defaults.pickerTimeFormat || tp_inst._defaults.timeFormat;
for (var i = min; i <= max; i += step) {
sel += '<option value="' + i + '"' + (i === val ? ' selected' : '') + '>';
if (unit === 'hour') {
sel +=