diff --git a/.eslintrc b/.eslintrc index 9faa375..97437c7 100644 --- a/.eslintrc +++ b/.eslintrc @@ -9,6 +9,9 @@ env: jquery: true node: true +globals: + sjcl: false + # http://eslint.org/docs/rules/ rules: # Possible Errors @@ -52,7 +55,7 @@ rules: dot-notation: 0 eqeqeq: 2 guard-for-in: 2 - no-alert: 2 + no-alert: 0 no-caller: 2 no-case-declarations: 2 no-div-regex: 2 diff --git a/js/privatebin.js b/js/privatebin.js index 56e8292..abc2e47 100644 --- a/js/privatebin.js +++ b/js/privatebin.js @@ -72,7 +72,7 @@ $(function() { hashToParameterString: function(associativeArray) { var parameterString = ''; - for (key in associativeArray) + for (var key in associativeArray) { if(parameterString === '') { @@ -1462,4 +1462,3 @@ $(function() { */ i18n.loadTranslations($.proxy(privatebin.init, privatebin)); }); -