socialforge/app/views/organizations/check_uniq.js.erb

18 lines
583 B
Plaintext
Raw Normal View History

2015-11-05 17:57:07 +08:00
<%if @check == false %>
$checkName = false
<% if @config_page%>
$("#check_name_hint").html('<span class="c_red">名字不能重复<span>').show();
<% else%>
$("#organization_name_notice").html('<span class="c_red">名字不能重复<span>').show();
<%end%>
<% else %>
$checkName = true;
<% if @config_page%>
$("#check_name_hint").html('<span class="c_green">名字可以使用</span>').show();
<% else%>
$("#organization_name_notice").html('<span class="c_green">名字可以使用</span>').show();
<%end%>
<%end%>