The following nav bar code produces a nav bar with 6 slots when logged out (e.g. Send, Get, Account, Sign in, Full, and blank. The max for the nav bar is 5 items without wrapping. I want jquery mobile to recognize that there are only 5 items. Is there some syntax for accomplishing this?
![navbar]: http://ponzicode.com/so/navbar.jpg
<div data-role="navbar">
<ul>
<li><%= link_to "Send", %></li>
<li><%= link_to "Get", %></li>
<li><%= link_to "Account", root_path %></li>
<% if user_signed_in? %>
<li><%= link_to "Sign out", destroy_user_session_path, :method => :delete %></li>
<% else %>
<li><%= link_to "Sign in", new_user_session_path %></li>
<% end %>
<% if mobile_device? %>
<li><%= link_to "Full", :mobile => 0 %></li>
<% else %>
<li><%= link_to "Mobile", :mobile => 1 %></li>
<% end %>
</ul>
</div>
application_controller.rb
class ApplicationController < ActionController::Base
protect_from_forgery
before_filter :prepare_for_mobile
private
def mobile_device?
if session[:mobile_param]
session[:mobile_param] == "1"
else
request.user_agent =~ /Mobile|webOS/
end
end
helper_method :mobile_device?
def prepare_for_mobile
session[:mobile_param] = params[:mobile] if params[:mobile]
request.format = :mobile if mobile_device?
end
end