add loadingIcon.js

This commit is contained in:
rolux 2013-07-28 09:52:13 +00:00
commit aeed539fe7
3 changed files with 18 additions and 11 deletions

15
static/js/loadingIcon.js Normal file
View file

@ -0,0 +1,15 @@
'use strict';
pandora.ui.loadingIcon = function() {
var that = Ox.LoadingIcon({size: 'medium'});
that.update = function(requests) {
that[requests ? 'start' : 'stop']().options({
tooltip: (requests || 'No') + ' request' + (requests == 1 ? '' : 's')
});
};
return that;
};