embed document, fixes #2960

This commit is contained in:
j 2018-03-05 16:55:03 +05:30
commit 1905f6843b
3 changed files with 17 additions and 3 deletions

View file

@ -31,14 +31,19 @@ pandora.ui.embedPanel = function() {
that = pandora.ui.embedNavigation(view);
}
}
} else if (ui.section == 'documents') {
that = pandora.ui.embedDocument()
} else if (ui.section == 'edits') {
// FIXME: this is non-standard, see above!
that = pandora.ui.editPanel(true);
} else {
that = pandora.ui.embedError(true)
}
} else if (ui.page == 'documents' && ui.document) {
that = pandora.ui.embedError(true);
} else if (ui.page == 'document' && ui.part.document) {
ui.document = ui.part.document
ui.section = 'documents'
ui.page = ''
that = pandora.ui.embedDocument()
}
if (!that) {
that = pandora.ui.embedError();