diff options
author | zotlabs <mike@macgirvin.com> | 2017-09-27 20:43:47 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-09-27 20:43:47 -0700 |
commit | 0f36916fb40ae963652aa150e7b3aa22a9572d15 (patch) | |
tree | 146701f0742f27bbdd2e22830f13ed859f781779 /library | |
parent | b9664f6980452390b120e0c7443fd773d527b3bd (diff) | |
parent | 1fd2b6f5b673b78af594f778db5f30954897adce (diff) | |
download | volse-hubzilla-0f36916fb40ae963652aa150e7b3aa22a9572d15.tar.gz volse-hubzilla-0f36916fb40ae963652aa150e7b3aa22a9572d15.tar.bz2 volse-hubzilla-0f36916fb40ae963652aa150e7b3aa22a9572d15.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'library')
-rw-r--r-- | library/jquery_ac/friendica.complete.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/jquery_ac/friendica.complete.js b/library/jquery_ac/friendica.complete.js index 73a6e91d5..3012a754b 100644 --- a/library/jquery_ac/friendica.complete.js +++ b/library/jquery_ac/friendica.complete.js @@ -243,7 +243,7 @@ } else if (!this.isBadQuery(q)) {
me = this;
me.options.params.query = q;
- $('#nav-search-spinner').spin('tiny');
+ $('#nav-search-spinner').show();
$.get(this.serviceUrl, me.options.params, function(txt) { me.processResponse(txt); }, 'text');
}
},
@@ -306,7 +306,7 @@ this.data = response.data;
this.suggest();
}
- $('#nav-search-spinner').spin(false);
+ $('#nav-search-spinner').hide();
},
activate: function(index) {
|