gitlabhq/app/views/notes/_notes.html.haml

27 lines
679 B
Plaintext
Raw Normal View History

2011-11-04 16:46:51 +01:00
- if can? current_user, :write_note, @project
= render "notes/form"
.clear
%hr
%ul#notes-list= render "notes/notes_list"
2011-10-08 23:36:38 +02:00
:javascript
$('.delete-note').live('ajax:success', function() {
$(this).closest('li').fadeOut(); });
2011-10-08 23:36:38 +02:00
2011-10-17 19:05:47 +02:00
$("#new_note").live("ajax:before", function(){
$("#submit_note").attr("disabled", "disabled");
2011-10-17 19:05:47 +02:00
})
$("#new_note").live("ajax:complete", function(){
$("#submit_note").removeAttr("disabled");
2011-10-17 19:05:47 +02:00
})
2011-11-04 16:46:51 +01:00
$(function(){
$("#note_note").live("click", function(){
$(this).css("height", "100px");
$('.attach_holder').show();
2011-10-17 18:48:10 +02:00
});
2011-11-04 16:46:51 +01:00
NoteList.init("wall", #{@notes.last.try(:id) || 0}, #{@notes.first.try(:id) || 0});
});