|
1 | 1 | /** |
2 | 2 | * angular-strap |
3 | | - * @version v2.0.0-rc.2 - 2014-01-29 |
| 3 | + * @version v2.0.0-rc.3 - 2014-02-10 |
4 | 4 | * @link http://mgcrea.github.io/angular-strap |
5 | | - * @author [object Object] |
| 5 | + * @author Olivier Louvignes ([email protected]) |
6 | 6 | * @license MIT License, http://www.opensource.org/licenses/MIT |
7 | 7 | */ |
8 | 8 | (function(window, document, undefined) { |
9 | 9 | 'use strict'; |
10 | 10 | // Source: dist/modules/alert.tpl.js |
11 | 11 | angular.module('mgcrea.ngStrap.alert').run(['$templateCache', function($templateCache) { |
12 | 12 | $templateCache.put('alert/alert.tpl.html', |
13 | | - "<div class=\"alert\" tabindex=\"-1\" ng-class=\"[type ? 'alert-' + type : null]\"><button type=\"button\" class=\"close\" ng-click=\"$hide()\">×</button> <strong ng-bind=\"title\"></strong> <span ng-bind-html=\"content\"></span></div>" |
| 13 | + "<div class=\"alert alert-dismissable\" tabindex=\"-1\" ng-class=\"[type ? 'alert-' + type : null]\"><button type=\"button\" class=\"close\" ng-click=\"$hide()\">×</button> <strong ng-bind=\"title\"></strong> <span ng-bind-html=\"content\"></span></div>" |
14 | 14 | ); |
15 | 15 |
|
16 | 16 | }]); |
@@ -50,7 +50,7 @@ $templateCache.put('modal/modal.tpl.html', |
50 | 50 | // Source: dist/modules/popover.tpl.js |
51 | 51 | angular.module('mgcrea.ngStrap.popover').run(['$templateCache', function($templateCache) { |
52 | 52 | $templateCache.put('popover/popover.tpl.html', |
53 | | - "<div class=\"popover\" ng-show=\"content\"><div class=\"arrow\"></div><h3 class=\"popover-title\" ng-bind=\"title\" ng-show=\"title\"></h3><div class=\"popover-content\" ng-bind=\"content\"></div></div>" |
| 53 | + "<div class=\"popover\"><div class=\"arrow\"></div><h3 class=\"popover-title\" ng-bind=\"title\" ng-show=\"title\"></h3><div class=\"popover-content\" ng-bind=\"content\"></div></div>" |
54 | 54 | ); |
55 | 55 |
|
56 | 56 | }]); |
@@ -82,7 +82,7 @@ $templateCache.put('timepicker/timepicker.tpl.html', |
82 | 82 | // Source: dist/modules/tooltip.tpl.js |
83 | 83 | angular.module('mgcrea.ngStrap.tooltip').run(['$templateCache', function($templateCache) { |
84 | 84 | $templateCache.put('tooltip/tooltip.tpl.html', |
85 | | - "<div class=\"tooltip\" ng-show=\"title\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\" ng-bind=\"title\"></div></div>" |
| 85 | + "<div class=\"tooltip in\" ng-show=\"title\"><div class=\"tooltip-arrow\"></div><div class=\"tooltip-inner\" ng-bind=\"title\"></div></div>" |
86 | 86 | ); |
87 | 87 |
|
88 | 88 | }]); |
|
0 commit comments