My Rails app works fine when viewed through my application.html.erb, however, as soon as I render the mobile view (by switching User Agents), my controller actions stop behaving appropriately when tied to Javascript. Namely, instead of one Get request per submission, multiple go out.

The weird thing is the number of requests always increase in the same fashion after reloading the page...first one request, then two, then six, etc.

I am using Rails 3.1 with JQtouch and I have not edited any of the JS files. I am also using the asset pipeline. As aforementioned, everything works perfectly fine through a browser. Things get weird when I switch over to the mobile views.

Any idea why this might be happening?

My mobile files:

_venture_form_mobile.erb

<%= form_for [@lot, @venture] do |f| %>
  <ul class="rounded">
    <li><%= f.text_field :content %></li>
  </ul>  
  <%= link_to "Submit", nil, :class => "whiteButton submit" %>
<% end %>    

_venture.mobile.erb

<table>
<tr>
   ...
<td class = "vote">
  <%= link_to venture.score, [:upvote, @lot, venture], :class => "blueButton" %>
</td>
</tr>
</table>

application.mobile.erb

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<head>
<title><%= title %></title>
<%= csrf_meta_tag %>
<%= stylesheet_link_tag "jqtouch", 'themes/apple/theme' %>
<%= javascript_include_tag "application", 'jqtouch/jqtouch',
                                "mobile" %>
<%= render 'layouts/header' %>                               
</head>
<body>
   ...
</body>
</html>

application.js

// Place your application-specific JavaScript functions and classes here
// This file is automatically included by javascript_include_tag :defaults

//= require jquery
//= require jquery_ujs
//= require_self
//= require_tree .

mobile.js

$.jQTouch({});
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.