2014-05-04 17:26:43 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
oml.ui.loadingIcon = function() {
|
|
|
|
|
|
|
|
var self = {},
|
|
|
|
that = Ox.LoadingIcon({
|
|
|
|
tooltip: Ox._('Reload')
|
|
|
|
}, self)
|
|
|
|
.attr({
|
|
|
|
src: Ox.UI.getImageURL('symbolRedo')
|
|
|
|
})
|
|
|
|
.css(getCSS('stop'))
|
|
|
|
.bindEvent({
|
|
|
|
anyclick: function() {
|
|
|
|
oml.$ui.appPanel.reload();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
that.superStart = that.start;
|
|
|
|
that.superStop = that.stop;
|
|
|
|
|
|
|
|
that.start = function() {
|
|
|
|
if (!self.loadingInterval) {
|
|
|
|
that.css(getCSS('start'))
|
|
|
|
.attr({
|
|
|
|
src: Ox.UI.getImageURL('symbolLoading')
|
|
|
|
});
|
|
|
|
that.superStart();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
that.stop = function() {
|
|
|
|
if (self.loadingInterval) {
|
|
|
|
that.superStop(function() {
|
|
|
|
that.css(getCSS('stop'))
|
|
|
|
.attr({
|
|
|
|
src: Ox.UI.getImageURL('symbolRedo')
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2014-05-17 11:45:57 +00:00
|
|
|
that.updateElement = function(requests) {
|
2014-05-04 17:26:43 +00:00
|
|
|
that[requests ? 'start' : 'stop']();
|
|
|
|
};
|
|
|
|
|
|
|
|
function getCSS(action) {
|
|
|
|
return action == 'start' ? {
|
|
|
|
width: '16px',
|
|
|
|
height: '16px',
|
|
|
|
margin: 0,
|
|
|
|
opacity: 0
|
|
|
|
} : {
|
|
|
|
width: '10px',
|
|
|
|
height: '10px',
|
|
|
|
margin: '3px',
|
|
|
|
opacity: 1
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
return that;
|
|
|
|
|
|
|
|
};
|