Skip to content

Commit

Permalink
fix(templates): Add missing data-pjax on tag anchors
Browse files Browse the repository at this point in the history
  • Loading branch information
oswaldoacauan committed May 27, 2014
1 parent 7146541 commit 52bdb5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/partials/post/list.hbs
Expand Up @@ -20,7 +20,7 @@
{{#if tags}}
<li class="post-item-meta-item">
{{#foreach tags}}
<a itemprop="{{#if @first}}articleSection{{else}}keywords{{/if}}" href="{{url}}">{{name}}</a>
<a itemprop="{{#if @first}}articleSection{{else}}keywords{{/if}}" href="{{url}}" data-pjax>{{name}}</a>
{{~#if @last}} {{else}}, {{/if}}
{{/foreach}}
</li>
Expand Down
2 changes: 1 addition & 1 deletion src/post.hbs
Expand Up @@ -15,7 +15,7 @@
{{#if tags}}
<li class="post-meta-item">
{{#foreach tags}}
<a itemprop="{{#if @first}}articleSection{{else}}keywords{{/if}}" href="{{url}}">{{name}}</a>
<a itemprop="{{#if @first}}articleSection{{else}}keywords{{/if}}" href="{{url}}" data-pjax>{{name}}</a>
{{~#if @last}} {{else}}, {{/if}}
{{/foreach}}
</li>
Expand Down

0 comments on commit 52bdb5c

Please sign in to comment.