diff options
| author | rr- | 2016-08-28 20:50:48 +0200 |
|---|---|---|
| committer | rr- | 2016-08-28 22:23:20 +0200 |
| commit | 79d7b83e39be415724543871317d6bdc1990cfed (patch) | |
| tree | 2ca3b5111a2ea827441b019d78a436a2c2f3d986 /client | |
| parent | 6b042504b057620b90eb65838e5ccb1061bbee3f (diff) | |
client/posts: fix mass tag
Diffstat (limited to 'client')
| -rw-r--r-- | client/css/post-list-view.styl | 2 | ||||
| -rw-r--r-- | client/html/posts_page.tpl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/client/css/post-list-view.styl b/client/css/post-list-view.styl index 02e0ef6..b266ca1 100644 --- a/client/css/post-list-view.styl +++ b/client/css/post-list-view.styl @@ -116,7 +116,7 @@ width: 25em input[name=masstag] width: 12em - .masstag-hint + .masstag-hint, .open-masstag margin-right: 1em .append font-size: 0.95em diff --git a/client/html/posts_page.tpl b/client/html/posts_page.tpl index b773b22..438ba5a 100644 --- a/client/html/posts_page.tpl +++ b/client/html/posts_page.tpl @@ -35,7 +35,7 @@ </span> <% } %> </a> - <% if (ctx.canMassTagg && ctx.parameters && ctx.parameters.tag) { %> + <% if (ctx.canMassTag && ctx.parameters && ctx.parameters.tag) { %> <a href data-post-id='<%= post.id %>' class='masstag'> </a> <% } %> |