14 lines
435 B
Plaintext
14 lines
435 B
Plaintext
|
<% if @project%>
|
||
|
var checked = $("#not_org_members input:checked").size();
|
||
|
if(checked > 0)
|
||
|
{
|
||
|
alert('翻页或搜索后将丢失当前选择的用户数据!');
|
||
|
}
|
||
|
<% if @flag == "true"%>
|
||
|
$('#new_orgs_for_project').html('<%= escape_javascript(search_public_orgs_not_in_project(@project.id)) %>');
|
||
|
<% else%>
|
||
|
$('#new_orgs_for_project').html('<%= escape_javascript(search_public_orgs_not_in_project(@project.id)) %>');
|
||
|
<% end%>
|
||
|
|
||
|
<%end%>
|