Forked from TrevorS/bootstrap-datetimepicker-rails on Sept 3, 2015.
My goal is to make it not require bootstrap-sass.
This gem packages the bootstrap-datetimepicker for the Rails 3.1+ asset pipeline.
Add these lines to your application's Gemfile:
gem "datetime_picker_rails", github: "graysonwright/datetime_picker_rails"And then execute:
$ bundleIf your server is running, you will need to restart Rails before using the gem.
Add the following to your JavaScript manifest file (application.js):
//= require moment
//= require datetime_pickerIf you want to include a localization, also add:
//= require moment/<locale>Add the following to your style sheet file:
If you are using SCSS, modify your application.css.scss
@import "datetime_picker";If you're using plain CSS, modify your application.css
*= require datetime_pickerCheck out the documentation at: http://eonasdan.github.io/bootstrap-datetimepicker/
Clone https://github.com/TrevorS/bs3dp-test and try to reproduce your issue.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature) - Commit your changes (
git commit -am 'Add some feature') - Push to the branch (
git push origin my-new-feature) - Create new Pull Request