fulltext search in pages

This commit is contained in:
j 2021-11-15 15:20:08 +00:00
commit 950bec609d
13 changed files with 608 additions and 22 deletions

View file

@ -419,11 +419,13 @@ appPanel
]
},
sortKeys: pandora.getSortKeys(),
documentSortKeys: pandora.getDocumentSortKeys(),
collectionViews: [
{id: 'list', title: Ox._('View as List')},
{id: 'grid', title: Ox._('View as Grid')}
]
documentSortKeys: pandora.getDocumentSortKeys()
});
pandora.site.collectionViews = (pandora.site.collectionViews || [
{id: 'list', title: 'as List'},
{id: 'grid', title: 'as Grid'}
]).map(view => {
return {id: view.id, title: Ox._('View {0}', [Ox._(view.title)])};
});
pandora.site.listSettings = {};
Ox.forEach(pandora.site.user.ui, function(val, key) {