/** * angular-strap * @version v2.3.12 - 2017-01-26 * @link http://mgcrea.github.io/angular-strap * @author Olivier Louvignes (https://github.com/mgcrea) * @license MIT License, http://www.opensource.org/licenses/MIT */ (function(window, document, undefined) { 'use strict'; angular.module('mgcrea.ngStrap.alert').run([ '$templateCache', function($templateCache) { $templateCache.put('alert/alert.tpl.html', '
 
'); } ]); angular.module('mgcrea.ngStrap.aside').run([ '$templateCache', function($templateCache) { $templateCache.put('aside/aside.tpl.html', ''); } ]); angular.module('mgcrea.ngStrap.datepicker').run([ '$templateCache', function($templateCache) { $templateCache.put('datepicker/datepicker.tpl.html', ''); } ]); angular.module('mgcrea.ngStrap.dropdown').run([ '$templateCache', function($templateCache) { $templateCache.put('dropdown/dropdown.tpl.html', ''); } ]); angular.module('mgcrea.ngStrap.modal').run([ '$templateCache', function($templateCache) { $templateCache.put('modal/modal.tpl.html', ''); } ]); angular.module('mgcrea.ngStrap.popover').run([ '$templateCache', function($templateCache) { $templateCache.put('popover/popover.tpl.html', '

'); } ]); angular.module('mgcrea.ngStrap.select').run([ '$templateCache', function($templateCache) { $templateCache.put('select/select.tpl.html', ''); } ]); angular.module('mgcrea.ngStrap.tab').run([ '$templateCache', function($templateCache) { $templateCache.put('tab/tab.tpl.html', '
'); } ]); angular.module('mgcrea.ngStrap.timepicker').run([ '$templateCache', function($templateCache) { $templateCache.put('timepicker/timepicker.tpl.html', ''); } ]); angular.module('mgcrea.ngStrap.tooltip').run([ '$templateCache', function($templateCache) { $templateCache.put('tooltip/tooltip.tpl.html', '
'); } ]); angular.module('mgcrea.ngStrap.typeahead').run([ '$templateCache', function($templateCache) { $templateCache.put('typeahead/typeahead.tpl.html', ''); } ]); })(window, document);