OSDN Git Service

Add 'notes/reversed_notes_with_form' partial
authorRiyad Preukschas <riyad@informatik.uni-bremen.de>
Fri, 14 Sep 2012 15:00:48 +0000 (17:00 +0200)
committerRiyad Preukschas <riyad@informatik.uni-bremen.de>
Fri, 14 Sep 2012 19:41:57 +0000 (21:41 +0200)
app/assets/stylesheets/sections/notes.scss
app/views/notes/_reversed_notes_with_form.html.haml [new file with mode: 0644]
app/views/projects/wall.html.haml

index 8db8893..2db20f1 100644 (file)
   padding:0px;
 }
 
-#notes-list li:last-child {
+#new-notes-list:not(.reversed) {
+  border-top:1px solid #aaa;
+}
+#new-notes-list.reversed {
   border-bottom:1px solid #aaa;
 }
 
@@ -48,7 +51,6 @@
 
 .note {
   padding: 8px 0;
-  border-bottom: 1px solid #eee;
   overflow: hidden;
   display: block;
   img {float: left; margin-right: 10px;}
     .delete-note { display:block; }
   }
 }
+#notes-list:not(.reversed) .note,
+#new-notes-list:not(.reversed) .note {
+  border-bottom: 1px solid #eee;
+}
+#notes-list.reversed .note,
+#new-notes-list.reversed .note {
+  border-top: 1px solid #eee;
+}
 
 .notes-status {
   margin: 18px;
diff --git a/app/views/notes/_reversed_notes_with_form.html.haml b/app/views/notes/_reversed_notes_with_form.html.haml
new file mode 100644 (file)
index 0000000..05f0184
--- /dev/null
@@ -0,0 +1,11 @@
+- if can? current_user, :write_note, @project
+  = render "notes/common_form"
+
+%ul.reversed#new-notes-list
+%ul.reversed#notes-list
+.notes-status
+
+:javascript
+  $(function(){
+    NoteList.init("#{tid}", "#{tt}", "#{project_notes_path(@project)}");
+  });
\ No newline at end of file
index 1a07bc3..591a8cd 100644 (file)
@@ -1,2 +1,2 @@
 %div.wall_page
-  = render "notes/notes_with_form", tid: nil, tt: "wall"
+  = render "notes/reversed_notes_with_form", tid: nil, tt: "wall"