aboutsummaryrefslogtreecommitdiffstats
path: root/library
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-07-14 01:19:24 -0700
committerfriendica <info@friendica.com>2013-07-14 01:19:24 -0700
commit873c1f381e039f631a2634de1747ec85a6bad5d6 (patch)
tree74bfa72aea4cd090c1550f36437666cdd272350e /library
parent5b73755af7befa171223c6cdb6cc7ec917cedd6f (diff)
parent6abaa37fe37ee52a01e686ab3b722bcf8c2693f3 (diff)
downloadvolse-hubzilla-873c1f381e039f631a2634de1747ec85a6bad5d6.tar.gz
volse-hubzilla-873c1f381e039f631a2634de1747ec85a6bad5d6.tar.bz2
volse-hubzilla-873c1f381e039f631a2634de1747ec85a6bad5d6.zip
Merge pull request #77 from git-marijus/master
add spin.js a themable js spinner to red
Diffstat (limited to 'library')
-rw-r--r--library/jquery_ac/friendica.complete.js4
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) {