/** * angular-strap * @version v2.0.3 - 2014-05-30 * @link http://mgcrea.github.io/angular-strap * @author Olivier Louvignes (olivier@mg-crea.com) * @license MIT License, http://www.opensource.org/licenses/MIT */ (function(window, document, undefined) { 'use strict'; // Source: alert.tpl.js angular.module('mgcrea.ngStrap.alert').run([ '$templateCache', function ($templateCache) { $templateCache.put('alert/alert.tpl.html', '
 
'); } ]); // Source: aside.tpl.js angular.module('mgcrea.ngStrap.aside').run([ '$templateCache', function ($templateCache) { $templateCache.put('aside/aside.tpl.html', ''); } ]); // Source: datepicker.tpl.js angular.module('mgcrea.ngStrap.datepicker').run([ '$templateCache', function ($templateCache) { $templateCache.put('datepicker/datepicker.tpl.html', ''); } ]); // Source: dropdown.tpl.js angular.module('mgcrea.ngStrap.dropdown').run([ '$templateCache', function ($templateCache) { $templateCache.put('dropdown/dropdown.tpl.html', ''); } ]); // Source: modal.tpl.js angular.module('mgcrea.ngStrap.modal').run([ '$templateCache', function ($templateCache) { $templateCache.put('modal/modal.tpl.html', ''); } ]); // Source: popover.tpl.js angular.module('mgcrea.ngStrap.popover').run([ '$templateCache', function ($templateCache) { $templateCache.put('popover/popover.tpl.html', '

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