From c6ec38c62137fbf3ad8f8922e4438f67a92dbbee Mon Sep 17 00:00:00 2001 From: Leigh Johnson Date: Fri, 27 May 2016 16:36:55 -0400 Subject: [PATCH] add JSlint ignore --- .../client/src/job-detail/host-event/host-event.controller.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/awx/ui/client/src/job-detail/host-event/host-event.controller.js b/awx/ui/client/src/job-detail/host-event/host-event.controller.js index 73b00ae8e5..8463cc7a8f 100644 --- a/awx/ui/client/src/job-detail/host-event/host-event.controller.js +++ b/awx/ui/client/src/job-detail/host-event/host-event.controller.js @@ -17,6 +17,7 @@ if (typeof value === 'object'){return false;} else {return true;} }; + /*ignore jslint start*/ /* jshint ignore:start */ var initCodeMirror = function(el, json){ var container = $(el)[0]; @@ -28,6 +29,7 @@ editor.getDoc().setValue(JSON.stringify(json, null, 4)); }; /* jshint ignore:end */ + /*ignore jslint end*/ $scope.isActiveState = function(name){ return $state.current.name === name; };