diff options
author | git-marijus <mario@mariovavti.com> | 2013-07-13 18:28:26 +0200 |
---|---|---|
committer | git-marijus <mario@mariovavti.com> | 2013-07-13 18:28:26 +0200 |
commit | 6f7e61d42ae93073d41c2e5e4833a783bdf8f699 (patch) | |
tree | 3dd993391c4fd75ab09d1e56e3c2fda7729b891f | |
parent | 21e013ab05c60a07bb1e79843598eb799f41fa05 (diff) | |
download | volse-hubzilla-6f7e61d42ae93073d41c2e5e4833a783bdf8f699.tar.gz volse-hubzilla-6f7e61d42ae93073d41c2e5e4833a783bdf8f699.tar.bz2 volse-hubzilla-6f7e61d42ae93073d41c2e5e4833a783bdf8f699.zip |
port to spin.js
-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 c8a28c0a7..b73598575 100644 --- a/library/jquery_ac/friendica.complete.js +++ b/library/jquery_ac/friendica.complete.js @@ -242,7 +242,7 @@ } else if (!this.isBadQuery(q)) {
me = this;
me.options.params.query = q;
- $('#nav-search-spinner').show();
+ $('#nav-search-spinner').spin('tiny');
$.get(this.serviceUrl, me.options.params, function(txt) { me.processResponse(txt); }, 'text');
}
},
@@ -305,7 +305,7 @@ this.data = response.data;
this.suggest();
}
- $('#nav-search-spinner').hide();
+ $('#nav-search-spinner').spin(false);
},
activate: function(index) {
|