summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2015-08-10 20:20:30 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2015-08-12 17:05:18 +0200
commit53679811da855acf9bd944a389a48399ca5d5a15 (patch)
treefa75e06a965fb5751017288a5c135bc179574210 /templates
parentc77a6705d34c81cb933f3d4b83eb18e2b586035a (diff)
serverside full text
remove enhancers add full text client side implementation fix bugs and tests for full text feed
Diffstat (limited to 'templates')
-rw-r--r--templates/part.navigation.feed.php13
1 files changed, 12 insertions, 1 deletions
diff --git a/templates/part.navigation.feed.php b/templates/part.navigation.feed.php
index 13c178b7b..7705294aa 100644
--- a/templates/part.navigation.feed.php
+++ b/templates/part.navigation.feed.php
@@ -102,6 +102,18 @@
</button>
</li>
<li>
+ <button ng-click="Navigation.toggleFullText(feed)"
+ class="icon-full-text-disabled"
+ ng-hide="feed.fullTextEnabled"
+ title="<?php p($l->t('Enable full text feed fetching')); ?>">
+ </button>
+ <button ng-click="Navigation.toggleFullText(feed)"
+ class="icon-full-text-enabled"
+ ng-show="feed.fullTextEnabled"
+ title="<?php p($l->t('Disable full text feed fetching')); ?>">
+ </button>
+ </li>
+ <li>
<button ng-click="feed.editing=true"
class="icon-rename"
title="<?php p($l->t('Rename feed')); ?>">
@@ -130,4 +142,3 @@
ng-click="Navigation.deleteFeed(feed)"></button>
</div>
</li>
-