Skip to content

Instantly share code, notes, and snippets.

@panakh
Created October 13, 2013 15:20
Show Gist options
  • Save panakh/6963470 to your computer and use it in GitHub Desktop.
Save panakh/6963470 to your computer and use it in GitHub Desktop.
Ember timepicker
App.TimePickerView = Ember.View.create({
templateName: 'timepicker',
init: function() {
this._super();
$('#timepicker1').timepicker({
minuteStep: 1,
showSeconds: true,
showMeridian: false
})
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment