diff options
| author | 2014-09-19 19:51:02 +0200 | |
|---|---|---|
| committer | 2014-09-19 19:51:02 +0200 | |
| commit | e134891733a5e7916edeff09bd8ce6ea0042f86a (patch) | |
| tree | 07c352401cc0e96aac2d82c348d4057ca057b39d /app/views/helpers/view | |
| parent | d284958d52f633738e8cc736f7f4a50e0c984ecf (diff) | |
Fix bug of JavaScript loading
Introduced by https://github.com/marienfressinaud/FreshRSS/commit/64b3d140f64d8fcaba30a514e0f956929f9bb126
Diffstat (limited to 'app/views/helpers/view')
| -rw-r--r-- | app/views/helpers/view/global_view.phtml | 2 | ||||
| -rw-r--r-- | app/views/helpers/view/normal_view.phtml | 2 | ||||
| -rw-r--r-- | app/views/helpers/view/reader_view.phtml | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/app/views/helpers/view/global_view.phtml b/app/views/helpers/view/global_view.phtml index 48aa5d46f..72bcf4c73 100644 --- a/app/views/helpers/view/global_view.phtml +++ b/app/views/helpers/view/global_view.phtml @@ -46,7 +46,7 @@ </div> <?php } else { ?> -<div class="prompt alert alert-warn"> +<div id="stream" class="prompt alert alert-warn global"> <h2><?php echo _t('no_feed_to_display'); ?></h2> <a href="<?php echo _url('configure', 'feed'); ?>"><?php echo _t('think_to_add'); ?></a><br /><br /> </div> diff --git a/app/views/helpers/view/normal_view.phtml b/app/views/helpers/view/normal_view.phtml index 6659a9a6b..1dbf14f4c 100644 --- a/app/views/helpers/view/normal_view.phtml +++ b/app/views/helpers/view/normal_view.phtml @@ -183,7 +183,7 @@ if (!empty($this->entries)) { <?php $this->partial ('nav_entries'); ?> <?php } else { ?> -<div class="prompt alert alert-warn"> +<div id="stream" class="prompt alert alert-warn normal"> <h2><?php echo _t('no_feed_to_display'); ?></h2> <a href="<?php echo _url('configure', 'feed'); ?>"><?php echo _t('think_to_add'); ?></a><br /><br /> </div> diff --git a/app/views/helpers/view/reader_view.phtml b/app/views/helpers/view/reader_view.phtml index 832b27be4..c80dca519 100644 --- a/app/views/helpers/view/reader_view.phtml +++ b/app/views/helpers/view/reader_view.phtml @@ -37,7 +37,7 @@ if (!empty($this->entries)) { </div> <?php } else { ?> -<div class="prompt alert alert-warn"> +<div id="stream" class="prompt alert alert-warn reader"> <h2><?php echo _t('no_feed_to_display'); ?></h2> <a href="<?php echo _url('configure', 'feed'); ?>"><?php echo _t('think_to_add'); ?></a><br /><br /> </div> |
