Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
subugoe
emo
TIDO
Commits
f60a6a0b
Commit
f60a6a0b
authored
Apr 25, 2020
by
schneider210
Browse files
bugfix: osd icons blurred in fullscreen mode; delete obsolete emitter
parent
b602c3a6
Pipeline
#132396
passed with stages
in 3 minutes and 55 seconds
Changes
5
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/components/metadata.vue
View file @
f60a6a0b
...
...
@@ -2,7 +2,7 @@
<div>
<q-list
v-if=
"Object.keys(collection).length"
>
<q-item>
<q-item-section
class=
"text-h6
text-uppercase
"
>
Collection
</q-item-section>
<q-item-section
class=
"text-h6"
>
Collection
</q-item-section>
</q-item>
<q-item>
<q-item-section>
...
...
@@ -34,7 +34,7 @@
<q-list>
<q-item>
<q-item-section
class=
"text-h6
text-uppercase
"
>
<q-item-section
class=
"text-h6"
>
Manuscript
{{
sequenceindex
+
1
}}
/
{{
manifests
.
length
}}
</q-item-section>
</q-item>
...
...
@@ -50,16 +50,14 @@
<q-list>
<q-item>
<q-item-section
class=
"text-h6
text-uppercase
"
>
<q-item-section
class=
"text-h6"
>
Page
{{
itemindex
+
1
}}
/
{{
itemcount
}}
</q-item-section>
</q-item>
<q-item>
<q-item-section>
<q-item-label
overline
class=
"text-uppercase"
>
Pagelabel:
</q-item-label>
<q-item-label>
<small
style=
"color: red;"
>
1st draft. Yet buggy ...
</small>
</q-item-label>
<q-item-label>
{{
}}
</q-item-label>
</q-item-section>
</q-item>
</q-list>
...
...
src/components/navbar.vue
View file @
f60a6a0b
...
...
@@ -9,8 +9,7 @@
--itemindex;
sequenceindex = computedsequenceindex;
updateItem(itemurls[itemindex]);
updateSequenceIndex(sequenceindex);
updateTreeNodes(sequenceindex);"
updateSequenceIndex(sequenceindex);"
>
<q-icon
:name=
"fasArrowLeft"
...
...
@@ -45,8 +44,7 @@
++itemindex;
sequenceindex = computedsequenceindex;
updateItem(itemurls[itemindex]);
updateSequenceIndex(sequenceindex);
updateTreeNodes(sequenceindex);"
updateSequenceIndex(sequenceindex);"
>
{{ captionnext }}
<q-icon
...
...
src/components/openseadragon.vue
View file @
f60a6a0b
...
...
@@ -4,7 +4,7 @@
<q-btn
v-for=
"(btn, idx) in buttons"
:key=
"idx"
class=
"q-mr-sm q-mb-sm"
color=
"
black
"
color=
"
grey-8
"
outline
round
size=
"md"
...
...
src/components/quasar-tree.vue
View file @
f60a6a0b
...
...
@@ -29,7 +29,7 @@ export default {
this
.
fasCaretRight
=
fasCaretRight
;
},
mounted
()
{
this
.
$root
.
$on
(
'
update-
tree-no
de
s
'
,
(
index
)
=>
{
this
.
$root
.
$on
(
'
update-
sequence-in
de
x
'
,
(
index
)
=>
{
this
.
expanded
.
push
(
this
.
manifests
[
index
].
label
);
});
},
...
...
src/mixins/navigation.js
View file @
f60a6a0b
...
...
@@ -16,9 +16,6 @@ export default {
updateSequenceIndex
()
{
this
.
$root
.
$emit
(
'
update-sequence-index
'
,
this
.
sequenceindex
);
},
updateTreeNodes
()
{
this
.
$root
.
$emit
(
'
update-tree-nodes
'
,
this
.
sequenceindex
);
},
},
computed
:
{
captionnext
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment