Skip to content

Commit

Permalink
Fixing switch tabs for mobile devices using ngTouch. Fixes #2.
Browse files Browse the repository at this point in the history
  • Loading branch information
rpocklin committed Nov 18, 2014
1 parent 559599f commit 3b17d92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui-router-tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ angular.module('ui.router.tabs').directive('tabs', function($rootScope, $state)
var DEFAULT_TEMPLATE = '<div>' +
'<tabset class="tab-container" type="{{type}}" vertical="{{vertical}}" justified="{{justified}}">' +
' <tab class="tab" ng-repeat="tab in tabs" heading="{{tab.heading}}" ui-sref="{{tab.route}}(tab.params)"' +
' ui-sref-opts="{{tab.options}}" active="tab.active">' +
' ui-sref-opts="{{tab.options}}" ng-click active="tab.active">' +
' </tab>' +
'</tabset>' +
'</div>';
Expand Down

0 comments on commit 3b17d92

Please sign in to comment.