/**

* angular-strap
* @version v2.1.6 - 2015-01-11
* @link http://mgcrea.github.io/angular-strap
* @author Olivier Louvignes (olivier@mg-crea.com)
* @license MIT License, http://www.opensource.org/licenses/MIT
*/

“use strict”;angular.module(“mgcrea.ngStrap.tab”).run([“$templateCache”,function(a){a.put(“tab/tab.tpl.html”,‘<ul class=“nav” ng-class=“$navClass” role=“tablist”><li ng-repeat=“$pane in $panes track by $index” ng-class=“$index == $panes.$active ? $activeClass : ''”><a role=“tab” data-toggle=“tab” ng-click=“$setActive($index)” data-index=“{{ $index }}” ng-bind-html=“$pane.title”></a></li></ul><div ng-transclude class=“tab-content”></div>’)}]);