API explorer js style cleanup
authorColeman Watts <coleman@civicrm.org>
Sun, 25 Jan 2015 22:15:11 +0000 (17:15 -0500)
committerColeman Watts <coleman@civicrm.org>
Sun, 25 Jan 2015 22:15:11 +0000 (17:15 -0500)
templates/CRM/Admin/Page/APIExplorer.js

index f472cec90c85204a9e28ed7e99eb7761e20bf23e..e65411033516894c1b7fed7f50da94090e5a7365 100644 (file)
@@ -74,7 +74,7 @@
           ($(item.element).hasClass('strikethrough') ? '<span class="strikethrough">' + item.text + '</span>' : item.text);
       },
       placeholder: '<span class="icon ui-icon-link"></span> ' + ts('Entity'),
-      escapeMarkup: function(m) {return m}
+      escapeMarkup: function(m) {return m;}
     });
   }
 
@@ -91,7 +91,7 @@
       CRM.api3(entity, 'getactions')
         .done(function(actions) {
           $selector.prop('disabled', false);
-          CRM.utils.setOptions($('.api-chain-action', $row), _.transform(actions.values, function(ret, item) {ret.push({value: item, key: item})}));
+          CRM.utils.setOptions($('.api-chain-action', $row), _.transform(actions.values, function(ret, item) {ret.push({value: item, key: item});}));
         });
     }
   }
   function populateActions(el) {
     var val = $('#api-action').val();
     $('#api-action').removeClass('loading').select2({
-      data: _.transform(actions.values, function(ret, item) {ret.push({text: item, id: item})}),
+      data: _.transform(actions.values, function(ret, item) {ret.push({text: item, id: item});}),
       formatSelection: renderAction,
       formatResult: renderAction
     });