From 5a12f925e70cee678be65e38c480a3fcb68b2a02 Mon Sep 17 00:00:00 2001 From: Chris Thielen Date: Thu, 22 Sep 2016 18:42:12 -0500 Subject: [PATCH] Revert "fix(ng1.uiSref): Allow nested UISrefs by stopping event propagation on-click" This reverts commit b4a2499704f357d654cff6c6f8a2746c80752ccd. Closes #2962 --- src/ng1/directives/stateDirectives.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/ng1/directives/stateDirectives.ts b/src/ng1/directives/stateDirectives.ts index e014c0b8b..c2f39abba 100644 --- a/src/ng1/directives/stateDirectives.ts +++ b/src/ng1/directives/stateDirectives.ts @@ -67,7 +67,6 @@ function clickHook(el: IAugmentedJQuery, $state: StateService, $timeout: ITimeou $state.go(target.state, target.params, target.options); }); e.preventDefault(); - e.stopPropagation(); // if the state has no URL, ignore one preventDefault from the directive. var ignorePreventDefaultCount = type.isAnchor && !target.href ? 1: 0;