summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorBernhard Posselt <nukeawhale@gmail.com>2013-04-18 17:47:03 +0200
committerBernhard Posselt <nukeawhale@gmail.com>2013-04-18 17:47:03 +0200
commit402c534ee6453e28e5902f3d4f3a21b534309d24 (patch)
tree483a79a7cc528cb88200db40ff12c526bb542b4c /templates
parent97452a5f5e98e33981eeac1eb89402fc13b13cb2 (diff)
remove clientside hashing, fix #72
Diffstat (limited to 'templates')
-rw-r--r--templates/main.php1
-rw-r--r--templates/part.listfeed.php9
-rw-r--r--templates/part.listfolder.php10
3 files changed, 6 insertions, 14 deletions
diff --git a/templates/main.php b/templates/main.php
index 28ee2649c..ca01e1093 100644
--- a/templates/main.php
+++ b/templates/main.php
@@ -5,7 +5,6 @@
\OCP\Util::addScript('appframework', 'vendor/angular/angular');
\OCP\Util::addScript('appframework', 'public/app');
-\OCP\Util::addScript('news', 'vendor/md5js/md5');
\OCP\Util::addScript('news', 'vendor/angular-ui/angular-ui');
\OCP\Util::addScript('news', 'public/app');
diff --git a/templates/part.listfeed.php b/templates/part.listfeed.php
index efa6d5eeb..1a56febf2 100644
--- a/templates/part.listfeed.php
+++ b/templates/part.listfeed.php
@@ -36,20 +36,17 @@
<button class="svg action mark-read-icon"
ng-show="feedBusinessLayer.getUnreadCount(feed.id) > 0 && feed.id"
ng-click="feedBusinessLayer.markFeedRead(feed.id)"
- title="<?php p($l->t('Mark all read')); ?>"
- oc-tipsy="{gravity: 's'}"> </button>
+ title="<?php p($l->t('Mark all read')); ?>"> </button>
<button ng-click="feedBusinessLayer.delete(feed.id)"
class="svg action delete-icon"
title="<?php p($l->t('Delete feed')); ?>"
- ng-show="feed.id"
- oc-tipsy="{gravity: 's'}"></button>
+ ng-show="feed.id"></button>
<button class="svg action delete-icon"
ng-click="feedBusinessLayer.markErrorRead(feed.urlHash)"
title="<?php p($l->t('Delete website')); ?>"
- ng-show="feed.error"
- oc-tipsy="{gravity: 's'}"></button>
+ ng-show="feed.error"></button>
</span>
<div class="message" ng-show="feed.error">{{ feed.error }}</div>
diff --git a/templates/part.listfolder.php b/templates/part.listfolder.php
index d3b77ed52..4266b4814 100644
--- a/templates/part.listfolder.php
+++ b/templates/part.listfolder.php
@@ -28,8 +28,7 @@
<button ng-click="folderBusinessLayer.delete(folder.id)"
ng-hide="folderBusinessLayer.hasFeeds(folder.id) || !folder.id"
class="svg action delete-icon"
- title="<?php p($l->t('Delete folder')); ?>"
- oc-tipsy="{gravity: 's'}"></button>
+ title="<?php p($l->t('Delete folder')); ?>"></button>
<span class="unread-counter"
ng-show="folderBusinessLayer.getUnreadCount(folder.id) > 0">
@@ -39,18 +38,15 @@
<button class="svg action mark-read-icon"
ng-show="folderBusinessLayer.getUnreadCount(folder.id) > 0 && folder.id"
ng-click="folderBusinessLayer.markFolderRead(folder.id)"
- title="<?php p($l->t('Mark all read')); ?>"
- oc-tipsy="{gravity: 's'}"></button>
+ title="<?php p($l->t('Mark all read')); ?>"></button>
<button class="svg action delete-icon"
ng-click="folderBusinessLayer.markErrorRead(folder.name)"
title="<?php p($l->t('Delete folder')); ?>"
- ng-show="folder.error"
- oc-tipsy="{gravity: 's'}"></button>
+ ng-show="folder.error"></button>
<!-- <button class="svg action edit-icon"
ng-click="renameFolder(folder.id)"
- oc-tipsy
title="<?php p($l->t('Rename folder')); ?>"></button>
-->