ClientJS: »pattern:« nur bei Abschnittskommentaren
authorMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 24 Jan 2017 13:44:39 +0000 (14:44 +0100)
committerMoritz Bunkus <m.bunkus@linet-services.de>
Tue, 24 Jan 2017 13:49:58 +0000 (14:49 +0100)
Bei einem Kommentar hinter der Action ist der Kommentar selber bereits
das Pattern und darf das Stichwort »pattern:« nicht mehr
enthalten. Andernfalls würde es 1:1 in den JS-Code kopiert.

SL/ClientJS.pm
js/client_js.js

index 7f8bee0..6ef639d 100644 (file)
@@ -80,7 +80,7 @@ my %supported_methods = (
   'dialog:close'         => 1,
 
   # ## jQuery Form plugin ##
-  'ajaxForm'             => 1, # pattern: $(<TARGET>).ajaxForm({ success: eval_json_result })
+  'ajaxForm'             => 1, # $(<TARGET>).ajaxForm({ success: eval_json_result })
 
   # ## jstree plugin ## pattern: $.jstree._reference($(<TARGET>)).<FUNCTION>(<ARGS>)
 
index 3f2bde5..fecbcbc 100644 (file)
@@ -116,7 +116,7 @@ ns.eval_json_result = function(data) {
       else if (action[0] == 'dialog:close')         $(action[1]).dialog('close');
 
       // ## jQuery Form plugin ##
-      else if (action[0] == 'ajaxForm')             pattern: $(action[1]).ajaxForm({ success: eval_json_result });
+      else if (action[0] == 'ajaxForm')             $(action[1]).ajaxForm({ success: eval_json_result });
 
       // ## jstree plugin ##