Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/notes/_notes.html.haml')
-rw-r--r--app/views/notes/_notes.html.haml11
1 files changed, 5 insertions, 6 deletions
diff --git a/app/views/notes/_notes.html.haml b/app/views/notes/_notes.html.haml
index 2d110162eca..e7cc2360758 100644
--- a/app/views/notes/_notes.html.haml
+++ b/app/views/notes/_notes.html.haml
@@ -1,7 +1,7 @@
- if controller.action_name == "wall"
%ul#notes-list= render "notes/notes_list"
-- else
+- else
%ul#notes-list= render "notes/notes_list"
%br
%br
@@ -9,17 +9,16 @@
= render "notes/form"
:javascript
- $('.delete-note').live('ajax:success', function() {
- $(this).closest('li').fadeOut(); });
+ $('.delete-note').live('ajax:success', function() {
+ $(this).closest('li').fadeOut(); });
$("#new_note").live("ajax:before", function(){
- $("#submit_note").attr("disabled", "disabled");
+ $("#submit_note").attr("disabled", "disabled");
})
$("#new_note").live("ajax:complete", function(){
- $("#submit_note").removeAttr("disabled");
+ $("#submit_note").removeAttr("disabled");
})
-
- if ["issues", "projects"].include?(controller.controller_name)
:javascript