diff --git a/app/helpers/projects_helper.rb b/app/helpers/projects_helper.rb
index 0eb972eb..638bfba0 100644
--- a/app/helpers/projects_helper.rb
+++ b/app/helpers/projects_helper.rb
@@ -32,16 +32,20 @@ module ProjectsHelper
end
def project_next_prev_mobile
- html = ''
+ html = '
'
unless @previous_project.nil?
project_name = truncate(@previous_project.name, :length => 40, :omission => "...")
- html << link_to_project_mobile(@previous_project, "5", "« 5-#{project_name}")
+ html << '- '
+ html << link_to_project_mobile(@previous_project, "5", "#{project_name}")
+ html << '
'
end
- html << ' | ' if @previous_project && @next_project
unless @next_project.nil?
project_name = truncate(@next_project.name, :length => 40, :omission => "...")
- html << link_to_project_mobile(@next_project, "6", "6-#{project_name} »")
+ html << '- '
+ html << link_to_project_mobile(@next_project, "6", "#{project_name}")
+ html << '
'
end
+ html << '
'
html
end
diff --git a/app/views/layouts/mobile.m.erb b/app/views/layouts/mobile.m.erb
index 15d340b2..583d51b1 100644
--- a/app/views/layouts/mobile.m.erb
+++ b/app/views/layouts/mobile.m.erb
@@ -14,21 +14,21 @@
<% if current_user && !current_user.prefs.nil? -%>
<% if @down_count -%><%= @down_count %><% end -%> <%=
l(Date.today, :format => current_user.prefs.title_date_format) -%>
-
-<%= (link_to(t('layouts.mobile_navigation.new_action'), new_todo_path(new_todo_params))) unless @new_mobile -%>
-<%= (link_to(t('layouts.mobile_navigation.home'), todos_path(:format => 'm'))) unless @home -%>
-<%= (link_to(t('layouts.mobile_navigation.contexts'), contexts_path(:format => 'm'))) -%>
-<%= (link_to(t('layouts.mobile_navigation.projects'), projects_path(:format => 'm'))) -%>
-<%= (link_to(t('layouts.mobile_navigation.starred'), {:action => "tag", :controller => "todos", :id => "starred.m"})) -%>
+
+ - <%= (link_to(t('layouts.mobile_navigation.new_action'), new_todo_path(new_todo_params))) unless @new_mobile -%>
+ - <%= (link_to(t('layouts.mobile_navigation.home'), todos_path(:format => 'm'))) unless @home -%>
+ - <%= (link_to(t('layouts.mobile_navigation.contexts'), contexts_path(:format => 'm'))) -%>
+ - <%= (link_to(t('layouts.mobile_navigation.projects'), projects_path(:format => 'm'))) -%>
+ - <%= (link_to(t('layouts.mobile_navigation.starred'), {:action => "tag", :controller => "todos", :id => "starred.m"})) -%>
<% end -%>
-
+
<%= render_flash -%><%= yield -%>
<% if current_user && !current_user.prefs.nil? -%>
-
-<%= (link_to(t('layouts.mobile_navigation.logout'), logout_path(:format => 'm'))) -%>
-<%= (link_to(t('layouts.mobile_navigation.tickler'), {:action => "index", :controller => "tickler.m"})) -%>
-<%= (link_to(t('layouts.mobile_navigation.feeds'), {:action => "index", :controller => "feeds.m"})) -%>
-
+
+ - <%= (link_to(t('layouts.mobile_navigation.logout'), logout_path(:format => 'm'))) -%>
+ - <%= (link_to(t('layouts.mobile_navigation.tickler'), {:action => "index", :controller => "tickler.m"})) -%>
+ - <%= (link_to(t('layouts.mobile_navigation.feeds'), {:action => "index", :controller => "feeds.m"})) -%>
+
<% end -%>
<%= render :partial => "shared/mobile_footer" -%>