You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, paged content is rendered using Mirador, but is configured in a way that will display only one image at a time. Is it important to view paged content with the left and right sides of an opening visible side by side?
Here's an example from the Mirador instance used in AoR:
Single view
"Book" view
If we want to enable the book view, I believe we'd need to add a viewingHint: paged to the generated IIIF sequences (this can be done in idc_ui_module/plugin/views/style/IDCIIIFSerializer)
The text was updated successfully, but these errors were encountered:
config.window.views=[{key: 'single',behaviors: ['individuals']},{key: 'book',behaviors: ['paged']},];config.window.allowTopMenuButton=true;// Change from 'false' to 'true'
This will add a button to the top menu, which, when clicked, will open a control panel that would let a user choose view modes. .
Optionally, we could change config.windows.view to 'book'``, from 'single'`. This would show the "book" view by default instead of the single image view.
Currently, paged content is rendered using Mirador, but is configured in a way that will display only one image at a time. Is it important to view paged content with the left and right sides of an opening visible side by side?
Here's an example from the Mirador instance used in AoR:
Single view
"Book" view
If we want to enable the book view, I believe we'd need to add a
viewingHint: paged
to the generated IIIF sequences (this can be done inidc_ui_module/plugin/views/style/IDCIIIFSerializer
)The text was updated successfully, but these errors were encountered: