CSS & JS packaged differently in UI 1.8?
OK, I'm trying out 1.4.2 with UI 1.8rc3.
It appears the way the css and js is packaged has changed, and I can't figure out how to bring it all together. My test has only an accordion widget. Here is the relevant Rails (sorry) code:
- <%= stylesheet_link_tag "jquery-ui-1.8rc3.custom.css" %>
<%= javascript_include_tag "jquery-1.4.2.js" %>
<%= javascript_include_tag "jquery.ui.core.min.js" %>
<%= javascript_include_tag "jquery.ui.widget.min.js" %>
<%= javascript_include_tag "jquery.ui.accordion.min.js" %>
Is there something I'm missing just to get an accordion to fire up? or has there been any change to the API? Here is how I used to do it:
- $("#fullapp").accordion({
- active: 0, collapsible: false, header: "h3.head", autoHeight: false
- });
Did accordion get changed to use classes, or something?