Ox.UI -> Ox

This commit is contained in:
rolux 2014-09-25 18:59:29 +02:00 committed by j
commit 2dc987fd22
31 changed files with 76 additions and 76 deletions

View file

@ -7,7 +7,7 @@ pandora.ui.loadingIcon = function() {
tooltip: Ox._('Click to reload {0}', [pandora.site.site.name])
}, self)
.attr({
src: Ox.UI.getImageURL('symbolRedo')
src: Ox.getImageURL('symbolRedo')
})
.css(getCSS('stop'))
.bindEvent({
@ -23,7 +23,7 @@ pandora.ui.loadingIcon = function() {
if (!self.loadingInterval) {
that.css(getCSS('start'))
.attr({
src: Ox.UI.getImageURL('symbolLoading')
src: Ox.getImageURL('symbolLoading')
});
that.superStart();
}
@ -34,7 +34,7 @@ pandora.ui.loadingIcon = function() {
that.superStop(function() {
that.css(getCSS('stop'))
.attr({
src: Ox.UI.getImageURL('symbolRedo')
src: Ox.getImageURL('symbolRedo')
});
});
}