Correcting some selectors to conform with upgraded jQuery syntax (see Bug 3297).
authorHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Wed, 9 Sep 2009 21:46:31 +0000 (23:46 +0200)
committerHenri-Damien LAURENT <henridamien.laurent@biblibre.com>
Wed, 16 Sep 2009 21:19:45 +0000 (23:19 +0200)
Signed-off-by: Galen Charlton <galen.charlton@liblime.com>
koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember.tmpl
koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tmpl

index f295ca6..382b8fd 100644 (file)
@@ -24,23 +24,24 @@ $(document).ready(function() {
                sortList: [[0,0]],
                headers: { 1: { sorter: 'articles' },6: { sorter: false }}
        }); 
-       $('#manage-patron-image').find("input[@value*=Delete]").click(function(){
-                return confirm('Are you sure you want to delete this patron image? This cannot be undone.');
-       });<!-- TMPL_IF NAME="picture" -->
-       $('#manage-patron-image').find("input[@value*=Upload]").click(function(){
-               if($("#uploadfile").val() == ""){
-                       alert("Please choose a file to upload");
-                       return false;
-                       } else {
-                return confirm('Are you sure you want to replace the current patron image? This cannot be undone.');
-                }
+    <!-- TMPL_IF NAME="picture" -->
+    // new YAHOO.widget.Button("delpicture");   // FIXME: formatting mismatch between YUI and normal button
+       $('#delpicture').click(function(){
+                return confirm(_('Are you sure you want to delete this patron image? This cannot be undone.'));
+       });
+       $('#manage-patron-image').find("input[value*=Upload]").click(function(){
+        if($("#uploadfile").val() == ""){
+            alert(_("Please choose a file to upload"));
+            return false;
+        }
+        return confirm(_('Are you sure you want to replace the current patron image? This cannot be undone.'));
        });<!-- /TMPL_IF -->
-       $("#renew_all").click(function(){ $(".checkboxed").checkCheckboxes(":input[@name*=items]"); $(".checkboxed").unCheckCheckboxes(":input[@name*=barcodes]"); });
-       $("#return_all").click(function(){ $(".checkboxed").checkCheckboxes(":input[@name*=barcodes]"); $(".checkboxed").unCheckCheckboxes(":input[@name*=items]"); });
-       $("#CheckAllitems").click(function(){ $(".checkboxed").checkCheckboxes(":input[@name*=items]"); $(".checkboxed").unCheckCheckboxes(":input[@name*=barcodes]"); return false; });
-    $("#CheckNoitems").click(function(){ $(".checkboxed").unCheckCheckboxes(":input[@name*=items]"); return false; });
-       $("#CheckAllreturns").click(function(){ $(".checkboxed").checkCheckboxes(":input[@name*=barcodes]"); $(".checkboxed").unCheckCheckboxes(":input[@name*=items]"); return false; });
-    $("#CheckNoreturns").click(function(){ $(".checkboxed").unCheckCheckboxes(":input[@name*=barcodes]"); return false; });
+       $("#renew_all"      ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]"   ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); });
+       $("#return_all"     ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=barcodes]"); $(".checkboxed").unCheckCheckboxes(":input[name*=items]"   ); });
+       $("#CheckAllitems"  ).click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=items]"   ); $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); return false; });
+    $("#CheckNoitems"   ).click(function(){ $(".checkboxed").unCheckCheckboxes(":input[name*=items]"); return false; });
+       $("#CheckAllreturns").click(function(){ $(".checkboxed").checkCheckboxes(":input[name*=barcodes]"); $(".checkboxed").unCheckCheckboxes(":input[name*=items]"); return false; });
+    $("#CheckNoreturns" ).click(function(){ $(".checkboxed").unCheckCheckboxes(":input[name*=barcodes]"); return false; });
 
     <!-- TMPL_IF NAME="CAN_user_circulate_override_renewals" -->
     <!-- TMPL_IF NAME="AllowRenewalLimitOverride" -->
index e1e8297..7c1c4a7 100644 (file)
@@ -52,14 +52,14 @@ if (alreadyreserved > "0"){
  $(document).ready(function() {
        $("#requestany").click(function() {
                if(this.checked){
-               $("input[@name=checkitem]").each(function() {
+               $("input[name=checkitem]").each(function() {
                        $(this).attr("checked","");
                });
                }
        });
-       $("input[@name=checkitem]").click(function() {
+       $("input[name=checkitem]").click(function() {
                onechecked = 0;
-               $("input[@name=checkitem]").each(function() {
+               $("input[name=checkitem]").each(function() {
                        if(this.checked){
                                onechecked = 1;
                        }