Skip to content

Commit 1bffc7c

Browse files
committed
Formatting the code
1 parent 7b3ecee commit 1bffc7c

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/extensions/filter-control/bootstrap-table-filter-control.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -250,12 +250,14 @@
250250
var $input = $(this),
251251
oldValue = $input.val();
252252

253-
if (oldValue === "") return;
253+
if (oldValue === "") {
254+
return;
255+
}
254256

255257
setTimeout(function(){
256258
var newValue = $input.val();
257259

258-
if (newValue === ""){
260+
if (newValue === "") {
259261
clearTimeout(timeoutId);
260262
timeoutId = setTimeout(function () {
261263
that.onColumnSearch(event);

0 commit comments

Comments
 (0)