APIExplorer - lint js
authorColeman Watts <coleman@civicrm.org>
Tue, 27 Jan 2015 14:23:58 +0000 (09:23 -0500)
committerColeman Watts <coleman@civicrm.org>
Tue, 27 Jan 2015 14:23:58 +0000 (09:23 -0500)
templates/CRM/Admin/Page/APIExplorer.js

index 04f144322f6002dd395f68bbcbca3e5d64c7e01b..5723df8cacd5549979a2cf1b9c958c9c562ba840 100644 (file)
@@ -44,9 +44,8 @@
 
   /**
    * Add a new "options" row
-   * @param name
    */
-  function addOptionField(name) {
+  function addOptionField() {
     if ($('.api-options-row', '#api-params').length) {
       $('.api-options-row:last', '#api-params').after($(optionsTpl({})));
     } else {
 
   /**
    * Called after getActions to populate action list
-   * @param el
    */
-  function populateActions(el) {
+  function populateActions() {
     var val = $('#api-action').val();
     $('#api-action').removeClass('loading').select2({
       data: _.transform(actions.values, function(ret, item) {ret.push({text: item, id: item});}),
         last = val.slice(-1);
       // Simple types
       if (val === 'true' || val === 'false' || val === 'null') {
+        /* jshint evil: true */
         return eval(val);
       }
       // Quoted strings
     smartyStub = false;
     $.each(params, function(key, value) {
       var js = JSON.stringify(value);
-      if (!i++) {
+      if (!(i++)) {
         q.php += ", array(\n";
         q.json += ", {\n";
       } else {