Skip to content

Commit

Permalink
Add window to jshint globals and remove warning
Browse files Browse the repository at this point in the history
  • Loading branch information
MohammadYounes committed Feb 17, 2015
1 parent 78352bd commit 83156c8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .jshintrc
Expand Up @@ -23,6 +23,7 @@
"unused": true,

"globals": {
"window": true,
"document": true,
"alertify": true,
"define": true,
Expand Down
2 changes: 1 addition & 1 deletion src/js/outro.js
Expand Up @@ -11,4 +11,4 @@
window.alertify = alertify;
}

} ( typeof window !== "undefined" ? window : this ) );
} ( typeof window !== 'undefined' ? window : this ) );

0 comments on commit 83156c8

Please sign in to comment.