From 3e1255745165a4c9d11cfb807a59a34e10a1bc94 Mon Sep 17 00:00:00 2001 From: dpalou Date: Mon, 8 Oct 2018 12:21:16 +0200 Subject: [PATCH] MOBILE-2661 course: Display empty sections --- src/core/course/components/format/core-course-format.html | 2 +- src/core/course/components/format/format.ts | 4 ++-- src/core/course/pages/section-selector/section-selector.html | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/core/course/components/format/core-course-format.html b/src/core/course/components/format/core-course-format.html index 4b244729d..0094c019a 100644 --- a/src/core/course/components/format/core-course-format.html +++ b/src/core/course/components/format/core-course-format.html @@ -69,7 +69,7 @@ -
+
diff --git a/src/core/course/components/format/format.ts b/src/core/course/components/format/format.ts index 87f516cd1..57e16e51a 100644 --- a/src/core/course/components/format/format.ts +++ b/src/core/course/components/format/format.ts @@ -262,14 +262,14 @@ export class CoreCourseFormatComponent implements OnInit, OnChanges, OnDestroy { let j; for (j = i - 1; j >= 1; j--) { - if (this.sections[j].uservisible !== false && this.sections[j].hasContent) { + if (this.sections[j].uservisible !== false && !this.sections[j].hiddenbynumsections) { break; } } this.previousSection = j >= 1 ? this.sections[j] : null; for (j = i + 1; j < this.sections.length; j++) { - if (this.sections[j].uservisible !== false && this.sections[j].hasContent) { + if (this.sections[j].uservisible !== false && !this.sections[j].hiddenbynumsections) { break; } } diff --git a/src/core/course/pages/section-selector/section-selector.html b/src/core/course/pages/section-selector/section-selector.html index a1d6acde4..a3076b1a1 100644 --- a/src/core/course/pages/section-selector/section-selector.html +++ b/src/core/course/pages/section-selector/section-selector.html @@ -10,7 +10,7 @@ - +

{{ 'core.course.hiddenfromstudents' | translate }}