RailsCasts Pro episodes are now free!
Learn more or hide this
GitHub User: dladowitz
Site: http://dladowitz.github.com/
In your ascii cast I believe there is a typo
jQuery ->; $('#faqs').sortable();
should be
jQuery -> $('#faqs').sortable();
There is an extra semicolon that was breaking my code.
In your ascii cast I believe there is a typo
jQuery ->;
$('#faqs').sortable();
should be
jQuery ->
$('#faqs').sortable();
There is an extra semicolon that was breaking my code.