forked from 0x2620/pandora
embed document, fixes #2960
This commit is contained in:
parent
43370c5388
commit
1905f6843b
3 changed files with 17 additions and 3 deletions
|
@ -40,7 +40,7 @@ pandora.ui.document = function() {
|
|||
item = result.data;
|
||||
var documentTitle = pandora.getWindowTitle(item);
|
||||
document.title = pandora.getPageTitle(document.location.pathname) || documentTitle;
|
||||
pandora.$ui.itemTitle
|
||||
pandora.$ui.itemTitle && pandora.$ui.itemTitle
|
||||
.options({title: '<b>' + (pandora.getDocumentTitle(item)) + '</b>'})
|
||||
.show();
|
||||
|
||||
|
|
9
static/js/embedDocument.js
Normal file
9
static/js/embedDocument.js
Normal file
|
@ -0,0 +1,9 @@
|
|||
// vim: et:ts=4:sw=4:sts=4:ft=javascript
|
||||
|
||||
'use strict';
|
||||
|
||||
pandora.ui.embedDocument = function() {
|
||||
var that = Ox.Element();
|
||||
pandora.ui.document().appendTo(that)
|
||||
return that;
|
||||
};
|
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue