summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorBernhard Posselt <dev@bernhard-posselt.com>2014-06-02 00:49:36 +0200
committerBernhard Posselt <dev@bernhard-posselt.com>2014-06-02 00:49:36 +0200
commit1280da30fcca91fa1a07db70271393d3c4876369 (patch)
tree0e77e4db8123460b9e29b520eddcf09e9da975e1 /js
parentb5e4dd0ee565058c63d3df25fcebf352149e8158 (diff)
reload route if you click the path and the route is the same string
Diffstat (limited to 'js')
-rw-r--r--js/build/app.js18
-rw-r--r--js/directive/NewsRouteReload.js26
2 files changed, 44 insertions, 0 deletions
diff --git a/js/build/app.js b/js/build/app.js
index 81b92d4d0..31214d632 100644
--- a/js/build/app.js
+++ b/js/build/app.js
@@ -1635,6 +1635,24 @@ var $__build_47_app__ = function () {
});
};
});
+ app.directive('newsRouteReload', [
+ '$location',
+ '$route',
+ function ($location, $route) {
+ 'use strict';
+ return {
+ restrict: 'A',
+ scope: { 'ngHref': '@' },
+ link: function (scope, elem, attrs) {
+ elem.click(function () {
+ if ($location.path() === attrs.ngHref.substring(1)) {
+ $route.reload();
+ }
+ });
+ }
+ };
+ }
+ ]);
app.directive('newsScroll', [
'$timeout',
function ($timeout) {
diff --git a/js/directive/NewsRouteReload.js b/js/directive/NewsRouteReload.js
new file mode 100644
index 000000000..01cfa525c
--- /dev/null
+++ b/js/directive/NewsRouteReload.js
@@ -0,0 +1,26 @@
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2014
+ */
+app.directive('newsRouteReload', ($location, $route) => {
+ 'use strict';
+
+ return {
+ restrict: 'A',
+ scope: {
+ 'ngHref': '@'
+ },
+ link: (scope, elem, attrs) => {
+ elem.click(() => {
+ if ($location.path() === attrs.ngHref.substring(1)) {
+ $route.reload();
+ }
+ });
+ }
+ };
+}); \ No newline at end of file