Skip to content
Snippets Groups Projects
Commit 17f5a34b authored by Clement Ho's avatar Clement Ho
Browse files

Display loading indicator when filtering ref switcher dropdown

parent 4a925837
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -47,9 +47,11 @@
}
// Only filter asynchronously only if option remote is set
if (this.options.remote) {
$inputContainer.parent().addClass('is-loading');
clearTimeout(timeout);
return timeout = setTimeout(function() {
return this.options.query(this.input.val(), function(data) {
$inputContainer.parent().removeClass('is-loading');
return this.options.callback(data);
}.bind(this));
}.bind(this), 250);
Loading
Loading
---
title: Display loading indicator when filtering ref switcher dropdown
merge_request:
author:
Loading
Loading
@@ -20,9 +20,9 @@ feature 'Ref switcher', feature: true, js: true do
input.set 'binary'
wait_for_ajax
 
input.native.send_keys :down
input.native.send_keys :down
input.native.send_keys :enter
page.within '.dropdown-content ul' do
input.native.send_keys :enter
end
end
 
expect(page).to have_title 'binary-encoding'
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment