Re: [Rails] Rails 3.1 CoffeeScript not working
Try
$ ->
$('#events a').lightBox()
$("#slider").easySlider
auto: truecontinuous: true
There is an online js to coffeescript converter out there, I just can't find the link right now too.
On Fri, Jul 22, 2011 at 9:19 PM, Tomas R. <lists@ruby-forum.com> wrote:
I convert my old JS files into CoffeeScript, In my public controller I
used this functions
$('#events a').lightBox()
$(document).ready ->
$("#slider").easySlider
auto: true,
continuous: true
they load inside application.js like this
(function() {
$('#events a').lightBox();
$(document).ready(function() {
$("#slider").easySlider({
auto: true,
continuous: true
});
});
but it doesnt seems to work, also tried with an alert "hello" and doesnt
work neither, what i'm doing wrong?
--
Posted via http://www.ruby-forum.com/.
--
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group, send email to rubyonrails-talk@googlegroups.com.
To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home