removed passing of useless params, updated placeholder for user textcomplete

This commit is contained in:
MrYummy
2017-06-02 19:22:04 +02:00
parent deba1b76e3
commit 0c939f044c
3 changed files with 4 additions and 5 deletions

View File

@@ -2,7 +2,7 @@
<div class="field_container_user">
<% options = (defined?(options) && options || {}) %>
<% options[:class] = "#{options[:class]} editor_field" %>
<% options[:placeholder] ||= "Enter user's name. Prefix with \"@\" to get suggestions." %>
<% options[:placeholder] ||= "Enter user's name." %>
<%= text_field_tag name, content, options %>
</div>
</div>

View File

@@ -1,6 +1,6 @@
<% title "Forums" %>
<%= link_to "All threads", forumthreads_path(params.except("controller", "action")), class: "btn blue right" %>
<%= link_to "All threads", forumthreads_path, class: "btn blue right" %>
<div id="forum_groups">
<% @groups.each do |group| %>

View File

@@ -2,13 +2,12 @@
<h1>
<%= title @forum %>
<% params[:id] = params[:id].split("-")[0] %>
<%= link_to "Search Threads", forumthreads_path(params.except("action", "controller")), class: "btn blue right" %>
<% params[:id] = @forum.id %>
<%= link_to "Search Threads", forumthreads_path(params.to_hash), class: "btn blue right" %>
</h1>
<% if @forum.can_write?(current_user) %>
<p>
<%= link_to "New thread", new_forumthread_path(forum: @forum), class: "btn blue" %>
<% params[:id] = params[:id].split("-")[0] %>
</p>
<% end %>