summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2018-01-25 10:02:32 +0100
committerBernhard Posselt <BernhardPosselt@users.noreply.github.com>2018-01-25 10:02:32 +0100
commit79f49fa6f0b5368c197a3346dae1f57e4976e5ca (patch)
tree91ac3b2fa8ff30cb32083fb25d2d6aa076c2b989 /templates
parent9570304359921751545d526db12ff7696032f2c8 (diff)
Stable13 fixes (#254)
* Fixed required class for main content Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> * Fixed a external underline Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> * proper scroll area Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> * proper scroll area 2 Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> * Fixed transparent settings Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'templates')
-rw-r--r--templates/index.php2
-rw-r--r--templates/part.content.php3
2 files changed, 3 insertions, 2 deletions
diff --git a/templates/index.php b/templates/index.php
index a7f8bb303..5d9f0f63b 100644
--- a/templates/index.php
+++ b/templates/index.php
@@ -96,7 +96,7 @@ foreach (Plugin::getScripts() as $appName => $fileName) {
}"
ng-hide="App.loading.isLoading('global')"
ng-view
- news-scroll="#app-content"
+ news-scroll=".app-content-detail"
news-scroll-enabled-mark-read="Content.markReadEnabled()"
news-scroll-auto-page="Content.autoPage()"
news-scroll-mark-read="Content.scrollRead(itemIds)"></div>
diff --git a/templates/part.content.php b/templates/part.content.php
index 844588c4f..c240053ca 100644
--- a/templates/part.content.php
+++ b/templates/part.content.php
@@ -6,7 +6,8 @@
compact: Content.isCompactView(),
'feed-view': Content.isFeed()
}"
- news-compact-expand="{{ Content.isCompactExpand() }}">
+ news-compact-expand="{{ Content.isCompactExpand() }}"
+ class="app-content-detail">
<div ng-show="Content.getItems().length == 0" class="no-feeds-available">
<p ng-show="Content.isShowAll()"><?php p($l->t('No articles available')) ?></p>
<p ng-show="!Content.isShowAll()"><?php p($l->t('No unread articles available')) ?></p>