Skip to content
This repository was archived by the owner on Dec 1, 2023. It is now read-only.

Commit b1bd099

Browse files
committed
chore(release): cut the 2.3.0 release
1 parent bdf376c commit b1bd099

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

91 files changed

+1576
-1388
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "angular-strap",
33
"description": "AngularStrap - AngularJS directives for Bootstrap",
4-
"version": "2.2.4",
4+
"version": "2.3.0",
55
"keywords": [
66
"angular",
77
"bootstrap"

dist/angular-strap.js

+1,249-1,166
Large diffs are not rendered by default.

dist/angular-strap.min.js

+5-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-strap.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-strap.tpl.js

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/angular-strap.tpl.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modules/affix.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* angular-strap
3-
* @version v2.2.4 - 2015-05-28
3+
* @version v2.3.0 - 2015-07-12
44
* @link http://mgcrea.github.io/angular-strap
55
* @author Olivier Louvignes <olivier@mg-crea.com> (https://github.com/mgcrea)
66
* @license MIT License, http://www.opensource.org/licenses/MIT

dist/modules/affix.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/modules/alert.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* angular-strap
3-
* @version v2.2.4 - 2015-05-28
3+
* @version v2.3.0 - 2015-07-12
44
* @link http://mgcrea.github.io/angular-strap
55
* @author Olivier Louvignes <olivier@mg-crea.com> (https://github.com/mgcrea)
66
* @license MIT License, http://www.opensource.org/licenses/MIT
@@ -13,7 +13,7 @@ angular.module('mgcrea.ngStrap.alert', [ 'mgcrea.ngStrap.modal' ]).provider('$al
1313
prefixClass: 'alert',
1414
prefixEvent: 'alert',
1515
placement: null,
16-
template: 'alert/alert.tpl.html',
16+
templateUrl: 'alert/alert.tpl.html',
1717
container: false,
1818
element: null,
1919
backdrop: false,
@@ -56,7 +56,7 @@ angular.module('mgcrea.ngStrap.alert', [ 'mgcrea.ngStrap.modal' ]).provider('$al
5656
element: element,
5757
show: false
5858
};
59-
angular.forEach([ 'template', 'placement', 'keyboard', 'html', 'container', 'animation', 'duration', 'dismissable' ], function(key) {
59+
angular.forEach([ 'template', 'templateUrl', 'controller', 'controllerAs', 'placement', 'keyboard', 'html', 'container', 'animation', 'duration', 'dismissable' ], function(key) {
6060
if (angular.isDefined(attr[key])) options[key] = attr[key];
6161
});
6262
var falseValueRegExp = /^(false|0|)$/i;

dist/modules/alert.min.js

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)