Skip to content

Commit

Permalink
LVJ-0000: Fix jshint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
bsell93 committed Jun 14, 2018
1 parent 82b910f commit e235fce
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
13 changes: 7 additions & 6 deletions .jshintrc
Expand Up @@ -11,18 +11,19 @@
"jasmine": true,
"laxbreak": true,
"globals": {
"_": false,
"$": false,
"require": false,
"API_URL": false,
"_": false,
"__dirname": false,
"angular": false,
"inject": false,
"localStorage": false,
"module": false,
"moment": false,
"navigator": false,
"localStorage": false,
"require": false,
"sessionStorage": false,
"window": false,
"moment": false
"URL": false,
"window": false
}
}
}
Expand Up @@ -21,7 +21,7 @@ export default class IntercepteeModalController {
this.$uibModalInstance.dismiss();
}

fileUpload($file) {
fileUpload() {
this.questions[ImageQuestion].response.value = '';
}

Expand Down
Expand Up @@ -22,7 +22,7 @@ export default class IntercepteeModalController {
this.$uibModalInstance.dismiss();
}

fileUpload($file) {
fileUpload() {
this.questions[ImageQuestion].response.value = '';
}

Expand Down

0 comments on commit e235fce

Please sign in to comment.