diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2013-12-06 10:55:00 +0600 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2013-12-06 10:55:00 +0600 |
commit | 72a6bb147309ee28ca5905935b5418cefed13935 (patch) | |
tree | 536d790ccd365bd4454a72febbd99db01f70f27f | |
parent | ebf5df219a816533325a73915bfc682bcf591e42 (diff) | |
download | sonarqube-72a6bb147309ee28ca5905935b5418cefed13935.tar.gz sonarqube-72a6bb147309ee28ca5905935b5418cefed13935.zip |
Select list: remove sliding effect during search
-rw-r--r-- | sonar-server/src/main/webapp/javascripts/select-list.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/javascripts/select-list.js b/sonar-server/src/main/webapp/javascripts/select-list.js index 5df1e412c08..dabda328010 100644 --- a/sonar-server/src/main/webapp/javascripts/select-list.js +++ b/sonar-server/src/main/webapp/javascripts/select-list.js @@ -1,4 +1,5 @@ -/*global Backbone:false, Spinner:false*/ +/* global Backbone:false, jQuery:false */ +/* jshint eqnull:true */ (function ($) { @@ -255,6 +256,7 @@ if (hasQuery) { this.showFetchSpinner(); + this.currentFilter = 'all'; this.collection.fetch({ url: this.settings.searchUrl, |