Created
August 4, 2013 04:22
-
-
Save lando2319/6149109 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #Gemfile | |
| group :assests do | |
| ... | |
| gem 'jquery-ui-rails' | |
| end | |
| #app/assets/javascripts/application.js | |
| //= require jquery.ui.datepicker | |
| #app/assets/javascripts/message.js.coffee | |
| jQuery -> | |
| $('#message_date').datepicker () | |
| #app/assets/stylesheets/application.css | |
| *= require jquery.ui.datepicker | |
| #app/views/messages/show.html.erb | |
| text_field_tag "messages[date]" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment