Skip to content
This repository was archived by the owner on May 29, 2019. It is now read-only.

Commit 2b27dcb

Browse files
committed
fix(tabs): fix empty href
- Add agreed upon fix for empty href due to CSP and the new Angular router Fixes #3799
1 parent 9255134 commit 2b27dcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: template/tabs/tab.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<li ng-class="{active: active, disabled: disabled}">
2-
<a href ng-click="select()" tab-heading-transclude>{{heading}}</a>
2+
<a href="#" ng-click="$event.preventDefault(); select()" tab-heading-transclude>{{heading}}</a>
33
</li>

0 commit comments

Comments
 (0)