forked from 0x2620/pandora
LoadingScreen.hide -> hideScreen
This commit is contained in:
parent
2dc987fd22
commit
9a7a433e6e
1 changed files with 2 additions and 2 deletions
|
@ -103,7 +103,7 @@ Ox.load('UI', {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
);
|
);
|
||||||
Ox.LoadingScreen.hide();
|
Ox.hideScreen();
|
||||||
});
|
});
|
||||||
return that;
|
return that;
|
||||||
},
|
},
|
||||||
|
@ -111,7 +111,7 @@ Ox.load('UI', {
|
||||||
var that = Ox.Element();
|
var that = Ox.Element();
|
||||||
pandora.user.ui.item = options.item;
|
pandora.user.ui.item = options.item;
|
||||||
pandora.api.get({id: options.item, keys: videoKeys}, function(result) {
|
pandora.api.get({id: options.item, keys: videoKeys}, function(result) {
|
||||||
Ox.LoadingScreen.hide();
|
Ox.hideScreen();
|
||||||
var data = getVideoOptions(result.data),
|
var data = getVideoOptions(result.data),
|
||||||
ui = pandora.user.ui;
|
ui = pandora.user.ui;
|
||||||
that.append(pandora.player = Ox.VideoTimelinePlayer({
|
that.append(pandora.player = Ox.VideoTimelinePlayer({
|
||||||
|
|
Loading…
Reference in a new issue