Tons of little fixes

This commit is contained in:
magnolia-fan
2011-09-16 05:57:41 +04:00
parent 9ec01e1d6c
commit 6c42b98383
6 changed files with 58 additions and 53 deletions
@@ -248,7 +248,11 @@
} else if (!this.isBadQuery(q)) {
me = this;
me.options.params.query = q;
$.get(this.serviceUrl, me.options.params, function(txt) { me.processResponse(txt); }, 'text');
$('#artist-load-spinner').show()
$.get(this.serviceUrl, me.options.params, function(txt) {
me.processResponse(txt);
$('#artist-load-spinner').hide();
}, 'text');
}
},