gitlabhq/app/views/projects/_team.html.haml

16 lines
421 B
Plaintext
Raw Normal View History

2012-01-28 10:54:11 +01:00
%ul.media-grid
2011-10-08 23:36:38 +02:00
- @project.users_projects.each do |up|
= render(:partial => 'team_members/show', :locals => {:member => up})
:javascript
$(function(){
2011-12-07 09:04:57 +01:00
$('#team-table .repo-access-select, #team-table .project-access-select').live("change", function() {
$(this.form).submit();
});
})
2012-01-28 10:54:11 +01:00
/*
$('.delete-team-member').live('ajax:success', function() {
$(this).closest('tr').fadeOut(); });
2012-01-28 10:54:11 +01:00
*/