Correcting some selectors to conform with upgraded jQuery syntax (see Bug 3297).
authorOwen Leonard <oleonard@myacpl.org>
Tue, 21 Jul 2009 17:36:00 +0000 (12:36 -0500)
committerGalen Charlton <galen.charlton@liblime.com>
Wed, 22 Jul 2009 14:17:56 +0000 (10:17 -0400)
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 ca2ed7c..d3deaf9 100644 (file)
@@ -27,21 +27,21 @@ $(document).ready(function() {
     <!-- 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.');
+                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(){
+       $('#manage-patron-image').find("input[value*=Upload]").click(function(){
         if($("#uploadfile").val() == ""){
-            alert("Please choose a file to upload");
+            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.');
+        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 ce8e5cb..a98fefe 100644 (file)
@@ -108,14 +108,14 @@ function checkMultiHold() {
     });
        $("#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;
                        }