I am quite new to ruby on rails development and I have question about customizing jquery-ui in rails application.
I know that now to install jquery-ui one need to use special gem "jquery-ui-rails" and then using
/*
*= require jquery.ui.all
*/
in code
But how am I going to customize that jquery-ui? For example, I need to make changes in jquery-ui.css and jquery-ui.js. What is the correct way to do it?
- It is considered bad style to modify jquery-ui.css and jquery-ui.js
- In case you need to modify jquery-ui.css and jquery-ui.js, you DO NOT need to include "jquery-ui-rails" gem and need to include them manually
- Some special way to customize them?