summaryrefslogtreecommitdiffstats
path: root/templates/index.php
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-09-12 19:40:16 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-09-12 19:40:16 +0200
commitb86a5591667ca8de3a83ef5bcbc756e356979b5a (patch)
tree4e364688193ab00a015301659e126ba2c6397a55 /templates/index.php
parent748500380e39880e54ee73ebaf5234ddf442e149 (diff)
adding feeds and folders, lady and gentlemen :P
Diffstat (limited to 'templates/index.php')
-rw-r--r--templates/index.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/templates/index.php b/templates/index.php
index aaf50d9f1..2ad7fa430 100644
--- a/templates/index.php
+++ b/templates/index.php
@@ -45,7 +45,12 @@ style('news', [
<!-- content -->
<script type="text/ng-template" id="content.html"><?php print_unescaped($this->inc('part.content')) ?></script>
- <div id="app-content" ng-class="{'loading-content': App.loading.isLoading('content') && !App.loading.isLoading('global')}" tabindex="-1">
+ <div id="app-content"
+ ng-class="{
+ 'loading-content': App.loading.isLoading('content') && !App.loading.isLoading('global'),
+ 'first-run': App.isFirstRun()
+ }"
+ tabindex="-1">
<div id="app-content-wrapper"
ng-class="{'autopaging': App.loading.isLoading('autopaging')}"
ng-hide="App.loading.isLoading('global')"