And, I found my answer by hacking through some of the JQ Mobile code.
The issue was related to JQ Mobile. I ended up doing:
<ul>
<li><%= link_to image_tag("facebook_64.png", :size => "64x64",
:alt => "Facebook"), "#{root_url}auth/facebook", :rel => "external"
%></li>
<li><%= link_to image_tag("twitter_64.png", :size => "64x64", :alt
=> "Twitter"), "#{root_url}auth/twitter", :rel => "external" %></li>
<li><%= link_to image_tag("google_64.png", :size => "64x64", :alt
=> "Google"), "#{root_url}auth/google", :rel => "external" %></li>
</ul>
Just adding a simple :rel => "external" to bypass the ajax request and
it works.
--
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 [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/rubyonrails-talk?hl=en.