aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/template/group_list.tpl
diff options
context:
space:
mode:
authorrvelices <rv-github@modusoptimus.com>2013-04-26 19:58:06 +0000
committerrvelices <rv-github@modusoptimus.com>2013-04-26 19:58:06 +0000
commit801047cb237bd124ec1a583e0fbba317008bdfed (patch)
tree1fecce8d61b6042a3e5eb356d4537066696f1a5d /admin/themes/default/template/group_list.tpl
parent835af44215b4678fd18b70028e8ae0594cff81dc (diff)
group_list compatibility with jquery 1.9
git-svn-id: http://piwigo.org/svn/trunk@22368 68402e56-0260-453c-a942-63ccdbb3a9ee
Diffstat (limited to 'admin/themes/default/template/group_list.tpl')
-rw-r--r--admin/themes/default/template/group_list.tpl18
1 files changed, 9 insertions, 9 deletions
diff --git a/admin/themes/default/template/group_list.tpl b/admin/themes/default/template/group_list.tpl
index c11b6369a..64a41236a 100644
--- a/admin/themes/default/template/group_list.tpl
+++ b/admin/themes/default/template/group_list.tpl
@@ -16,10 +16,10 @@ $(document).ready(function() {
$("#permitAction").show();
$("#forbidAction").hide();
}
- $("p[group_id="+$(this).attr("value")+"]").each(function () {
+ $("p[group_id="+$(this).prop("value")+"]").each(function () {
$(this).toggle();
});
-
+
if (nbSelected<2) {
$("#two_to_select").show();
$("#two_atleast").hide();
@@ -32,7 +32,7 @@ $(document).ready(function() {
$("[id^=action_]").hide();
$("select[name=selectAction]").change(function () {
$("[id^=action_]").hide();
- $("#action_"+$(this).attr("value")).show();
+ $("#action_"+$(this).prop("value")).show();
if ($(this).val() != -1) {
$("#applyActionBlock").show();
}
@@ -59,13 +59,13 @@ $(document).ready(function() {
</span>
<input type="text" id="groupname" name="groupname" maxlength="50" size="20">
<input type="submit" name="submit_add" value="{'Add'|@translate}">
- <input type="hidden" name="pwg_token" value="{$PWG_TOKEN}">
+ <input type="hidden" name="pwg_token" value="{$PWG_TOKEN}">
</fieldset>
</form>
<form method="post" name="add_user" action="{$F_ADD_ACTION}" class="properties">
<input type="hidden" name="pwg_token" value="{$PWG_TOKEN}">
-
+
<table class="table2">
<tr class="throw">
<th></th>
@@ -82,7 +82,7 @@ $(document).ready(function() {
{/foreach}
{/if}
</table>
-
+
<fieldset id="action">
<legend>{'Action'|@translate}</legend>
<div id="forbidAction">{'No group selected, no action possible.'|@translate}</div>
@@ -174,8 +174,8 @@ $(document).ready(function() {
{/foreach}
{/if}
</div>
-
-
+
+
<!-- plugins -->
{if !empty($element_set_groupe_plugins_actions)}
{foreach from=$element_set_groupe_plugins_actions item=action}
@@ -184,7 +184,7 @@ $(document).ready(function() {
</div>
{/foreach}
{/if}
-
+
<p id="applyActionBlock" style="display:none" class="actionButtons">
<input id="applyAction" class="submit" type="submit" value="{'Apply action'|@translate}" name="submit"> <span id="applyOnDetails"></span></p>
</div> <!-- #permitAction -->