fixing jshint warning

unused params don't need to be included `
This commit is contained in:
Jared Tabor 2015-02-20 18:00:19 -05:00
parent 41b4a66640
commit 614fe8e3fd

View File

@ -154,7 +154,7 @@ export default
// this is a work-around for getting awMax to work (without
// clearing out the form)
scope.$watch('days_to_keep', function(newVal, oldVal, scope) {
scope.$watch('days_to_keep', function(newVal) { // oldVal, scope) { // unused params get caught by jshint
if (!newVal) {
$('#prompt-for-days-launch').prop("disabled", true);
} else if (isNaN(newVal)) {