Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
subugoe
emo
TIDO
Commits
19969f0f
Commit
19969f0f
authored
Oct 01, 2020
by
schneider210
Browse files
Bugfix/minors
parent
d41b4b66
Changes
6
Hide whitespace changes
Inline
Side-by-side
.nvmrc
0 → 100644
View file @
19969f0f
v14
CHANGELOG.md
View file @
19969f0f
...
...
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
The format is based on
[
Keep a Changelog
](
https://keepachangelog.com/en/1.0.0/
)
,
and this project adheres to
[
Semantic Versioning
](
https://semver.org/spec/v2.0.0.html
)
.
## [1.4.2] - 2020-10-01
### Added
-
.nvmrc containing node version
### Fixed
-
quoting in css/responsive-heights.scss
## [1.4.1] - 2020-09-29
### Added
...
...
package-lock.json
View file @
19969f0f
{
"name": "@subugoe/qviewer",
"version": "1.4.
1
",
"version": "1.4.
2
",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
...
...
package.json
View file @
19969f0f
{
"name"
:
"@subugoe/qviewer"
,
"version"
:
"1.4.
1
"
,
"version"
:
"1.4.
2
"
,
"description"
:
"Viewer for the modular framework to present digital editions"
,
"productName"
:
"EMo Viewer"
,
"keywords"
:
[
...
...
@@ -59,7 +59,7 @@
"last 1 version, not dead, ie >= 11"
],
"engines"
:
{
"node"
:
">= 1
0.18.1
"
,
"node"
:
">= 1
4.0.0
"
,
"npm"
:
">= 6.13.4"
},
"resolutions"
:
{
...
...
src/components/openseadragon.vue
View file @
19969f0f
<
template
>
<!-- FIXME: remove inline style -->
<figure
id=
"openseadragon"
style=
"margin-top: 0; padding: 8px"
>
<figure
id=
"openseadragon"
style=
"margin-top: 0; padding: 8px
;
"
>
<nav
class=
"sticky"
>
<q-btn
v-for=
"(btn, idx) in buttons"
:key=
"idx"
...
...
src/css/responsive-heights.scss
View file @
19969f0f
@mixin
makeResponsiveHeight
{
$screenSizes
:
(
"400px"
:
"26vh"
,
"450px"
:
"34vh"
,
"500px"
:
"41vh"
,
"550px"
:
"46vh"
,
"600px"
:
"50vh"
,
"630px"
:
"53vh"
,
"660px"
:
"55vh"
,
"700px"
:
"58vh"
,
"750px"
:
"61vh"
,
"800px"
:
"63vh"
,
"850px"
:
"66vh"
,
"900px"
:
"67vh"
,
"980px"
:
"70vh"
,
"1200px"
:
"75vh"
,
"1300px"
:
"77vh"
,
"1800px"
:
"83vh"
);
$screenSizes
:
(
'400px'
:
'26vh'
,
'450px'
:
'34vh'
,
'500px'
:
'41vh'
,
'550px'
:
'46vh'
,
'600px'
:
'50vh'
,
'630px'
:
'53vh'
,
'660px'
:
'55vh'
,
'700px'
:
'58vh'
,
'750px'
:
'61vh'
,
'800px'
:
'63vh'
,
'850px'
:
'66vh'
,
'900px'
:
'67vh'
,
'980px'
:
'70vh'
,
'1200px'
:
'75vh'
,
'1300px'
:
'77vh'
,
'1800px'
:
'83vh'
);
@each
$minheight
,
$height
in
$screenSizes
{
@media
(
min-height
:
#{
$minheight
}
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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