0

I'm assuming Ruby on Rails 3.1 includes just the UI Core components (Core, Widget, Mouse, Position).

Question Part 1
Is there somewhere I can confirm this? I am trying to utilize some of jQuery's other awesome widgets. The ProgressBar to be exact.
Mainly, I am looking at the list of available widgets located here: http://jqueryui.com/download

Question Part 2
If I wanted to add say the jquery.ui.progressbar.js file to my RoR project, do I just add it to the app/assets/javascripts folder and add <%= javascript_include_tag 'jquery.ui.progressbar'%> to my application layout file?

Thanks!

EverTheLearner
  • 7,040
  • 16
  • 57
  • 72

1 Answers1

0

You'll find all your answers and much more here.


First page of the railscast, you see:

//= require jquery
//= require jquery_ujs
//= require jquery-ui
//= require_tree ./public

Which means default are jquery + jquery-ui.

If you want to add more, add them to the manifest or in your view.

Community
  • 1
  • 1
apneadiving
  • 114,565
  • 26
  • 219
  • 213