Skip to content

Commit

Permalink
update to 27
Browse files Browse the repository at this point in the history
  • Loading branch information
Radoslav Štofko committed Feb 21, 2024
1 parent 514e504 commit 85ee062
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
2 changes: 1 addition & 1 deletion appinfo/info.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ or use this new parameter `addAllowedFrameAncestorDomain` in `config.php`
'addAllowedFrameAncestorDomain' => '*.example.com:*'
...
```]]></description>
<version>2.2.0</version>
<version>2.2.1</version>
<licence>agpl</licence>
<author mail="rstofko@gmail.com" >Radoslav Stofko</author>
<category>customization</category>
Expand Down
18 changes: 8 additions & 10 deletions js/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,12 @@ window.addEventListener('DOMContentLoaded', function(event) {
}
}


function contentChanges() {
applyStyleChanges([
{el: '#content', style: 'width', value: '100%'},
{el: '#content-vue', style: 'width', value: '100%'},
{el: '#content', style: 'border-radius', value: '0'},
{el: '#content-vue', style: 'border-radius', value: '0'},
{el: '#content', style: 'width', value: '100%'},
{el: '#content-vue', style: 'width', value: '100%'},
{el: '#content', style: 'border-radius', value: '0'},
{el: '#content-vue', style: 'border-radius', value: '0'},
]);
}

Expand All @@ -68,10 +67,10 @@ window.addEventListener('DOMContentLoaded', function(event) {

if (onlyTopMenu) {
applyStyleChanges([
{el: '#content', style: 'margin', value: 0},
{el: '#content-vue', style: 'margin', value: 0},
{el: '#content', style: 'height', value: '100%'},
{el: '#content-vue', style: 'height', value: '100%'},
{el: '#content', style: 'margin', value: 0},
{el: '#content-vue', style: 'margin', value: 0},
{el: '#content', style: 'height', value: '100%'},
{el: '#content-vue', style: 'height', value: '100%'},
])
}
}
Expand All @@ -96,5 +95,4 @@ window.addEventListener('DOMContentLoaded', function(event) {
]);
}
}

});

0 comments on commit 85ee062

Please sign in to comment.