提交 17f5a34b 编写于 作者: C Clement Ho

Display loading indicator when filtering ref switcher dropdown

上级 4a925837
...@@ -47,9 +47,11 @@ ...@@ -47,9 +47,11 @@
} }
// Only filter asynchronously only if option remote is set // Only filter asynchronously only if option remote is set
if (this.options.remote) { if (this.options.remote) {
$inputContainer.parent().addClass('is-loading');
clearTimeout(timeout); clearTimeout(timeout);
return timeout = setTimeout(function() { return timeout = setTimeout(function() {
return this.options.query(this.input.val(), function(data) { return this.options.query(this.input.val(), function(data) {
$inputContainer.parent().removeClass('is-loading');
return this.options.callback(data); return this.options.callback(data);
}.bind(this)); }.bind(this));
}.bind(this), 250); }.bind(this), 250);
......
---
title: Display loading indicator when filtering ref switcher dropdown
merge_request:
author:
...@@ -20,9 +20,9 @@ feature 'Ref switcher', feature: true, js: true do ...@@ -20,9 +20,9 @@ feature 'Ref switcher', feature: true, js: true do
input.set 'binary' input.set 'binary'
wait_for_ajax wait_for_ajax
input.native.send_keys :down page.within '.dropdown-content ul' do
input.native.send_keys :down input.native.send_keys :enter
input.native.send_keys :enter end
end end
expect(page).to have_title 'binary-encoding' expect(page).to have_title 'binary-encoding'
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册