Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit dbc8906

Browse files
author
Narciso Jaramillo
committed
JSHint fixes
1 parent 9612589 commit dbc8906

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

Gruntfile.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -200,6 +200,8 @@ module.exports = function (grunt) {
200200
'test/**/*.js',
201201
'!test/perf/*-files/**/*.js',
202202
'!test/spec/*-files/**/*.js',
203+
'!test/spec/*-known-goods/**/*.js',
204+
'!test/spec/FindReplace-test-files-*/**/*.js',
203205
'!test/smokes/**',
204206
'!test/temp/**',
205207
'!test/thirdparty/**',

src/search/FindInFilesUI.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -308,12 +308,13 @@ define(function (require, exports, module) {
308308
text : Strings.BUTTON_REPLACE_WITHOUT_UNDO
309309
}
310310
]
311-
).done(function (id) {
312-
if (id === Dialogs.DIALOG_BTN_OK) {
313-
_resultsView.close();
314-
processReplace(false);
315-
}
316-
});
311+
)
312+
.done(function (id) {
313+
if (id === Dialogs.DIALOG_BTN_OK) {
314+
_resultsView.close();
315+
processReplace(false);
316+
}
317+
});
317318
}
318319
}
319320

0 commit comments

Comments
 (0)