fix upload, redirect to media not files view
This commit is contained in:
parent
0349ee6f8a
commit
b15dcf6223
1 changed files with 5 additions and 5 deletions
|
@ -177,12 +177,12 @@ pandora.ui.uploadDialog = function(data) {
|
||||||
done: function(data) {
|
done: function(data) {
|
||||||
if (data.progress == 1) {
|
if (data.progress == 1) {
|
||||||
Ox.Request.clearCache();
|
Ox.Request.clearCache();
|
||||||
if (pandora.user.ui.item == item && pandora.user.ui.itemView == 'files') {
|
if (pandora.user.ui.item == item && pandora.user.ui.itemView == 'media') {
|
||||||
pandora.$ui.item.reload();
|
pandora.$ui.item.reload();
|
||||||
} else {
|
} else {
|
||||||
pandora.UI.set({
|
pandora.UI.set({
|
||||||
item: item,
|
item: item,
|
||||||
itemView: 'files'
|
itemView: 'media'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
delete pandora.firefogg;
|
delete pandora.firefogg;
|
||||||
|
@ -222,12 +222,12 @@ pandora.ui.uploadDialog = function(data) {
|
||||||
done: function(data) {
|
done: function(data) {
|
||||||
if (data.progress == 1) {
|
if (data.progress == 1) {
|
||||||
Ox.Request.clearCache();
|
Ox.Request.clearCache();
|
||||||
if (pandora.user.ui.item == item && pandora.user.ui.itemView == 'files') {
|
if (pandora.user.ui.item == item && pandora.user.ui.itemView == 'media') {
|
||||||
pandora.$ui.item.reload();
|
pandora.$ui.item.reload();
|
||||||
} else {
|
} else {
|
||||||
pandora.UI.set({
|
pandora.UI.set({
|
||||||
item: item,
|
item: item,
|
||||||
itemView: 'files'
|
itemView: 'media'
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
that.close();
|
that.close();
|
||||||
|
@ -408,7 +408,7 @@ pandora.ui.uploadDialog = function(data) {
|
||||||
}, function(result) {
|
}, function(result) {
|
||||||
pandora.UI.set({
|
pandora.UI.set({
|
||||||
item: result.data.items[0].id,
|
item: result.data.items[0].id,
|
||||||
itemView: 'files'
|
itemView: 'media'
|
||||||
});
|
});
|
||||||
delete pandora.firefogg;
|
delete pandora.firefogg;
|
||||||
that.close();
|
that.close();
|
||||||
|
|
Loading…
Reference in a new issue