summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-09-18 08:54:17 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2012-09-18 08:54:17 +0300
commit249cb19d96cff52f70f930fbf13ee23ae5d66d3e (patch)
treee64af6936ec3d4b08dd4ab5aa023fb48b060eda1 /app/views
parent7cce2b1506fc9e1da2d933953e026bb8b9d81ba0 (diff)
downloadgitlab-ce-249cb19d96cff52f70f930fbf13ee23ae5d66d3e.tar.gz
Fix project update. Make slim form only for reversed comments
Diffstat (limited to 'app/views')
-rw-r--r--app/views/notes/_common_form.html.haml2
-rw-r--r--app/views/notes/_reversed_notes_with_form.html.haml2
-rw-r--r--app/views/projects/edit.html.haml6
3 files changed, 5 insertions, 5 deletions
diff --git a/app/views/notes/_common_form.html.haml b/app/views/notes/_common_form.html.haml
index 6d559cfc790..fc6e3c7ee6e 100644
--- a/app/views/notes/_common_form.html.haml
+++ b/app/views/notes/_common_form.html.haml
@@ -14,7 +14,7 @@
.right Comments are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.
.clearfix
- .row.note_advanced_opts.hide
+ .row.note_advanced_opts
.span3
= f.submit 'Add Comment', class: "btn success submit_note grouped", id: "submit_note"
= link_to 'Preview', preview_project_notes_path(@project), class: 'btn grouped', id: 'preview-link'
diff --git a/app/views/notes/_reversed_notes_with_form.html.haml b/app/views/notes/_reversed_notes_with_form.html.haml
index 05f01847da4..24d599244b4 100644
--- a/app/views/notes/_reversed_notes_with_form.html.haml
+++ b/app/views/notes/_reversed_notes_with_form.html.haml
@@ -8,4 +8,4 @@
:javascript
$(function(){
NoteList.init("#{tid}", "#{tt}", "#{project_notes_path(@project)}");
- }); \ No newline at end of file
+ });
diff --git a/app/views/projects/edit.html.haml b/app/views/projects/edit.html.haml
index 987d43ec540..fdd537da3aa 100644
--- a/app/views/projects/edit.html.haml
+++ b/app/views/projects/edit.html.haml
@@ -3,10 +3,10 @@
%h3.page_title Edit Project
%hr
= render "projects/form"
-%div.ajax_loader.hide
+%div.save-project-loader.hide
%center
- %div.padded= image_tag "ajax_loader.gif"
- %h3.prepend-top Saving project &amp; repository. Please wait...
+ = image_tag "ajax_loader.gif"
+ %h3 Saving project. Please wait a few minutes
:javascript
$(function(){ new Projects(); });