Change some id to prevent conflicts

master
Daniel Berteaud 10 years ago
parent b34153fc0f
commit d25d7f8e7e
  1. 8
      templates/default/manage_room.html.ep

@ -41,7 +41,7 @@
<%=l 'LOCKED' %> <%=l 'LOCKED' %>
</th> </th>
<th> <th>
<input class="bs-switch" type="checkbox" id="lock" data-room="<%= $room %>" <%= ($data->{locked} eq '1') ? 'checked':''%>> <input class="bs-switch" type="checkbox" id="lockSwitch" data-room="<%= $room %>" <%= ($data->{locked} eq '1') ? 'checked':''%>>
</th> </th>
</tr> </tr>
<tr> <tr>
@ -49,7 +49,7 @@
<%=l 'ASK_FOR_NAME' %> <%=l 'ASK_FOR_NAME' %>
</th> </th>
<th> <th>
<input class="bs-switch" type="checkbox" id="askForName" data-room="<%= $room %>" <%= ($data->{ask_for_name} eq '1') ? 'checked':''%>> <input class="bs-switch" type="checkbox" id="askForNameSwitch" data-room="<%= $room %>" <%= ($data->{ask_for_name} eq '1') ? 'checked':''%>>
</th> </th>
</tr> </tr>
<tr> <tr>
@ -57,7 +57,7 @@
<%=l 'PASSWORD_PROTECTED' %> <%=l 'PASSWORD_PROTECTED' %>
</th> </th>
<th> <th>
<input class="bs-switch" type="checkbox" id="joinPass" data-room="<%= $room %>" <%= ($data->{join_password}) ? 'checked':''%>> <input class="bs-switch" type="checkbox" id="joinPassSwitch" data-room="<%= $room %>" <%= ($data->{join_password}) ? 'checked':''%>>
</th> </th>
</tr> </tr>
<tr> <tr>
@ -65,7 +65,7 @@
<%=l 'PERSISTENT' %> <%=l 'PERSISTENT' %>
</th> </th>
<th> <th>
<input class="bs-switch" type="checkbox" id="ownerPass" data-room="<%= $room %>" <%= ($data->{owner_password}) ? 'checked':''%>> <input class="bs-switch" type="checkbox" id="ownerPassSwitch" data-room="<%= $room %>" <%= ($data->{owner_password}) ? 'checked':''%>>
</th> </th>
</tr> </tr>
</tbody> </tbody>

Loading…
Cancel
Save