aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views
diff options
context:
space:
mode:
authorOzoneGrif2020-02-27 23:45:04 +0100
committerGitHub2020-02-27 23:45:04 +0100
commitafa8a533ebb6943405cc5933167634c144e7f8c7 (patch)
tree4bd40d5d815cc376563cced2ce5c7e0338c8572d /viewer/src/views
parentb202197dcfe930b9f730919a1db217b99f9a9f55 (diff)
parent7fa92966087ec4c1b57b054d4ccccf395ba2da75 (diff)
downloadldgallery-afa8a533ebb6943405cc5933167634c144e7f8c7.tar.gz
Merge pull request #152 from pacien/oz-page-title
viewer: set page title
Diffstat (limited to 'viewer/src/views')
-rw-r--r--viewer/src/views/MainLayout.vue4
1 files changed, 4 insertions, 0 deletions
diff --git a/viewer/src/views/MainLayout.vue b/viewer/src/views/MainLayout.vue
index 2d74db9..6ab7d9a 100644
--- a/viewer/src/views/MainLayout.vue
+++ b/viewer/src/views/MainLayout.vue
@@ -19,6 +19,10 @@
19 19
20<template> 20<template>
21 <div :class="{'fullscreen': $uiStore.fullscreen, 'fullwidth': $uiStore.fullWidth}"> 21 <div :class="{'fullscreen': $uiStore.fullscreen, 'fullwidth': $uiStore.fullWidth}">
22 <ld-title
23 :gallery-title="$galleryStore.galleryTitle"
24 :current-item="$galleryStore.currentItem"
25 />
22 <panel-top v-if="!isLoading" class="layout layout-top" /> 26 <panel-top v-if="!isLoading" class="layout layout-top" />
23 <panel-left v-if="!isLoading" class="layout layout-left" /> 27 <panel-left v-if="!isLoading" class="layout layout-left" />
24 <router-view v-if="!isLoading" ref="content" class="layout layout-content scrollbar" /> 28 <router-view v-if="!isLoading" ref="content" class="layout layout-content scrollbar" />