This commit is contained in:
Toks
2013-04-15 15:21:13 -04:00
parent 854e0a6668
commit 56e82b6c84
2 changed files with 3 additions and 3 deletions

View File

@@ -104,7 +104,7 @@
$dest.append(Danbooru.RelatedTag.build_html("recent", Danbooru.RelatedTag.recent_tags())); $dest.append(Danbooru.RelatedTag.build_html("recent", Danbooru.RelatedTag.recent_tags()));
} }
if (Danbooru.RelatedTag.favorite_tags().length) { if (Danbooru.RelatedTag.favorite_tags().length) {
$dest.append(Danbooru.RelatedTag.build_html("favorite", Danbooru.RelatedTag.favorite_tags())); $dest.append(Danbooru.RelatedTag.build_html("frequent", Danbooru.RelatedTag.favorite_tags()));
} }
$dest.append(Danbooru.RelatedTag.build_html(query, related_tags)); $dest.append(Danbooru.RelatedTag.build_html(query, related_tags));
if (wiki_page_tags.length) { if (wiki_page_tags.length) {

View File

@@ -27,9 +27,9 @@
<%= f.input :blacklisted_tags, :hint => "Put any tag combinations you never want to see here. Each combination should go on a separate line.", :input_html => {:size => "40x5"} %> <%= f.input :blacklisted_tags, :hint => "Put any tag combinations you never want to see here. Each combination should go on a separate line.", :input_html => {:size => "40x5"} %>
<div class="input text optional field_with_hint"> <div class="input text optional field_with_hint">
<label class="text optional" for="user_favorite_tags">Favorite tags</label> <label class="text optional" for="user_favorite_tags">Frequent tags</label>
<textarea id="user_favorite_tags" class="text optional" rows="5" name="user[favorite_tags]" cols="40"><%= raw @user.favorite_tags %></textarea> <textarea id="user_favorite_tags" class="text optional" rows="5" name="user[favorite_tags]" cols="40"><%= raw @user.favorite_tags %></textarea>
<span class="hint">Put the tags you often use here, so they can show up in Related Tags field when you upload or edit a post.</span> <span class="hint">A list of tags that you use often. They will appear when using the list of Related Tags.</span>
</div> </div>
</fieldset> </fieldset>