aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordjones <dgjones@gmail.com>2010-11-27 10:11:16 +1300
committerdjones <dgjones@gmail.com>2010-11-27 10:11:16 +1300
commit207a6c32b2eb135c5d44b5feb03e821871ab8ebb (patch)
tree426589a23bff9b1c7ee411a398ee46484e416d14
parenta30753a7a5691a39a6bc7a26563107dee249484d (diff)
downloadrefinerycms-blog-207a6c32b2eb135c5d44b5feb03e821871ab8ebb.tar.gz
refinerycms-blog-207a6c32b2eb135c5d44b5feb03e821871ab8ebb.tar.bz2
refinerycms-blog-207a6c32b2eb135c5d44b5feb03e821871ab8ebb.zip
remove data-nav-url attribute from in post navigation
-rw-r--r--app/views/blog/posts/_nav.html.erb4
-rw-r--r--config/routes.rb1
2 files changed, 2 insertions, 3 deletions
diff --git a/app/views/blog/posts/_nav.html.erb b/app/views/blog/posts/_nav.html.erb
index e478ca6..50391ee 100644
--- a/app/views/blog/posts/_nav.html.erb
+++ b/app/views/blog/posts/_nav.html.erb
@@ -1,13 +1,13 @@
<% if next_or_previous?(@blog_post) -%>
<nav id="next_prev_article">
<% if @blog_post.next.present? -%>
- <%= link_to raw(truncate(@blog_post.next.title) + "&nbsp;&#187;"), @blog_post.next, :class => 'next', :"data-nav-url" => update_blog_nav_path(@blog_post.next) %>
+ <%= link_to raw(truncate(@blog_post.next.title) + "&nbsp;&#187;"), @blog_post.next, :class => 'next' %>
<% end -%>
<%= link_to 'Blog Home', blog_root_path, :class => 'home' %>
<% if @blog_post.prev.present? -%>
- <%= link_to "&#171;&nbsp;".html_safe + truncate(@blog_post.prev.title), @blog_post.prev, :class => 'prev', :"data-nav-url" => update_blog_nav_path(@blog_post.prev) %>
+ <%= link_to "&#171;&nbsp;".html_safe + truncate(@blog_post.prev.title), @blog_post.prev, :class => 'prev' %>
<% end -%>
</nav><!-- /next_prev_article -->
<% end -%>
diff --git a/config/routes.rb b/config/routes.rb
index df00362..2cb4723 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -7,7 +7,6 @@ if Rails.version < '3.0.0'
blog.category 'categories/:id', :controller => "categories", :action => 'show'
blog.post_blog_comments ':id/comments', :controller => 'posts', :action => 'comment'
-
## what is the rails2 syntax for this? sorry ;__;
# get 'archive/:year/:month', :to => 'posts#archive', :as => 'archive_blog_posts'
end