]> source.dussan.org Git - redmine.git/commitdiff
remove spaces inside {} of TrackersController
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 19 Nov 2020 13:30:46 +0000 (13:30 +0000)
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>
Thu, 19 Nov 2020 13:30:46 +0000 (13:30 +0000)
git-svn-id: http://svn.redmine.org/redmine/trunk@20435 e93f8b46-1217-0410-a6f0-8f06a7374b81

app/controllers/trackers_controller.rb

index 0d8bed419a5c656ddbe66645d00abc08a46d6223..fdb5f0e377f7f10ed2a27f8bd269d5499ce33973 100644 (file)
@@ -28,7 +28,7 @@ class TrackersController < ApplicationController
   def index
     @trackers = Tracker.sorted.to_a
     respond_to do |format|
-      format.html { render :layout => false if request.xhr? }
+      format.html {render :layout => false if request.xhr?}
       format.api
     end
   end
@@ -70,7 +70,7 @@ class TrackersController < ApplicationController
           flash[:notice] = l(:notice_successful_update)
           redirect_to trackers_path(:page => params[:page])
         end
-        format.js { head 200 }
+        format.js {head 200}
       end
     else
       respond_to do |format|
@@ -78,7 +78,7 @@ class TrackersController < ApplicationController
           edit
           render :action => 'edit'
         end
-        format.js { head 422 }
+        format.js {head 422}
       end
     end
   end