forked from 0x2620/pandora
dont check render status while upload is running
This commit is contained in:
parent
f1f9c7369b
commit
3c8d7a90c8
1 changed files with 3 additions and 1 deletions
|
@ -2353,7 +2353,9 @@ pandora.updateStatus = function(item) {
|
|||
function isActive() {
|
||||
return ui.item == item && [
|
||||
'info', 'player', 'editor', 'timeline'
|
||||
].indexOf(ui.itemView) > -1;
|
||||
].indexOf(ui.itemView) > -1 && (
|
||||
!pandora.$ui.uploadVideoDialog || pandora.$ui.uploadVideoDialog.is('::visible')
|
||||
);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue