Ox -> Ox.UI

This commit is contained in:
rolux 2014-09-26 14:30:51 +02:00
commit 3a764b38f9
11 changed files with 22 additions and 22 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.getImageURL('symbolRedo')
src: Ox.UI.getImageURL('symbolRedo')
})
.css(getCSS('stop'))
.bindEvent({
@ -23,7 +23,7 @@ pandora.ui.loadingIcon = function() {
if (!self.loadingInterval) {
that.css(getCSS('start'))
.attr({
src: Ox.getImageURL('symbolLoading')
src: Ox.UI.getImageURL('symbolLoading')
});
that.superStart();
}
@ -34,7 +34,7 @@ pandora.ui.loadingIcon = function() {
that.superStop(function() {
that.css(getCSS('stop'))
.attr({
src: Ox.getImageURL('symbolRedo')
src: Ox.UI.getImageURL('symbolRedo')
});
});
}