diff -r f5690d918358 -r e3217b6adea3 cms/app-client/app/templates/application.hbs
--- a/cms/app-client/app/templates/application.hbs Sun Oct 02 19:14:07 2016 +0200
+++ b/cms/app-client/app/templates/application.hbs Sun Oct 02 20:23:58 2016 +0200
@@ -1,26 +1,31 @@
{{player-component action="changeDocument" document=currentItem}}
+
{{#if notice}}
{{ notice-component class="overlay" model=noticeModel }}
{{/if}}
+
- {{#if (if-and player.window (eq player.window 'notice'))}}
- {{ notice-component }}
- {{else if (if-and player.window player.transcript (eq player.window 'transcript'))}}
- {{ transcript-component }}
+ {{#if player.window}}
+ {{#if (eq player.window 'notice')}}
+ {{ notice-component }}
+ {{else if (if-and (eq player.window 'transcript') player.transcript)}}
+ {{ transcript-component }}
+ {{/if}}
{{else}}
{{ outlet }}
{{/if}}
+ {{#if player.window}}
+ {{toolbar-component}}
+ {{/if}}
{{ filter-component }}
{{ playlist-component notice=notice model=model }}
-
-
-{{toolbar-component}}
\ No newline at end of file
+
\ No newline at end of file