1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-02 01:21:21 +03:00

add JSlint ignore

This commit is contained in:
Leigh Johnson 2016-05-27 16:36:55 -04:00
parent 62382a1dad
commit c6ec38c621

View File

@ -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;
};