summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 16:45:36 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-10-21 16:45:36 +0200
commit42d69a95f3276a2d6089ca68f635c4e2f6aa7a23 (patch)
tree6a17fd7998f291e6dec1d996c1e7c724b92b8e58 /templates
parent0e6598b0734fb927109f745d9c0f3a8605a30ca5 (diff)
convert tabs indention to indention with 4 spaces because of mixing of both variants in code and better readability on github and websites because you cant set the indention width there and 8 spaces will be used for a tab
Diffstat (limited to 'templates')
-rw-r--r--templates/part.navigation.starredfeed.php16
-rw-r--r--templates/part.navigation.unreadfeed.php22
2 files changed, 19 insertions, 19 deletions
diff --git a/templates/part.navigation.starredfeed.php b/templates/part.navigation.starredfeed.php
index adf3434db..b970c20b9 100644
--- a/templates/part.navigation.starredfeed.php
+++ b/templates/part.navigation.starredfeed.php
@@ -1,14 +1,14 @@
<li ng-class="{
- active: Navigation.isStarredActive(),
- unread: Navigation.getStarredCount() > 0
- }"
- class="with-counter starred-feed">
+ active: Navigation.isStarredActive(),
+ unread: Navigation.getStarredCount() > 0
+ }"
+ class="with-counter starred-feed">
- <a class="icon-starred" ng-href="#/items/starred/">
- <?php p($l->t('Starred')) ?>
- </a>
+ <a class="icon-starred" ng-href="#/items/starred/">
+ <?php p($l->t('Starred')) ?>
+ </a>
- <div class="app-navigation-entry-utils">
+ <div class="app-navigation-entry-utils">
<ul>
<li class="app-navigation-entry-utils-counter"
ng-show="Navigation.getStarredCount() > 0"
diff --git a/templates/part.navigation.unreadfeed.php b/templates/part.navigation.unreadfeed.php
index 968e1eec4..fc62427cd 100644
--- a/templates/part.navigation.unreadfeed.php
+++ b/templates/part.navigation.unreadfeed.php
@@ -1,18 +1,18 @@
<li ng-class="{
- active: Navigation.isSubscriptionsActive(),
- unread: Navigation.getUnreadCount() > 0
- }"
+ active: Navigation.isSubscriptionsActive(),
+ unread: Navigation.getUnreadCount() > 0
+ }"
class="subscriptions-feed with-counter with-menu">
- <a class="icon-rss" ng-href="#/items/" ng-if="!Navigation.isShowAll()">
- <?php p($l->t('Unread articles'))?>
- </a>
+ <a class="icon-rss" ng-href="#/items/" ng-if="!Navigation.isShowAll()">
+ <?php p($l->t('Unread articles'))?>
+ </a>
- <a class="icon-rss" ng-href="#/items/" ng-if="Navigation.isShowAll()">
- <?php p($l->t('All articles'))?>
- </a>
+ <a class="icon-rss" ng-href="#/items/" ng-if="Navigation.isShowAll()">
+ <?php p($l->t('All articles'))?>
+ </a>
- <div class="app-navigation-entry-utils">
+ <div class="app-navigation-entry-utils">
<ul>
<li class="app-navigation-entry-utils-counter"
ng-show="Navigation.getUnreadCount() > 0"
@@ -25,7 +25,7 @@
<div class="app-navigation-entry-menu">
<ul>
- <li><button class="icon-checkmark"
+ <li><button class="icon-checkmark"
title="<?php p($l->t('Read all')); ?>"
ng-click="Navigation.markRead()"></button>
</li>