From 1280da30fcca91fa1a07db70271393d3c4876369 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Mon, 2 Jun 2014 00:49:36 +0200 Subject: reload route if you click the path and the route is the same string --- js/build/app.js | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'js/build') 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) { -- cgit v1.2.3