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

Commit dcd765f

Browse files
committed
feat(release): cut the v2.0.0-beta.2 release
1 parent 999b97c commit dcd765f

36 files changed

+651
-97
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ angular.module('myApp', ['mgcrea.ngStrap']);
3535

3636
## Developers
3737

38-
Clone the repo, `git clone git://github.com/mgcrea/angular-strap.git`, [download the latest release](https://github.com/mgcrea/angular-strap/zipball/master) or install with bower `bower install angular-strap`.
38+
Clone the repo, `git clone git://github.com/mgcrea/angular-strap.git`, [download the latest release](https://github.com/mgcrea/angular-strap/zipball/master) or install with bower `bower install angular-strap#~2.0.0 --save`.
3939

4040
AngularStrap is tested with `karma` against the latest stable release of AngularJS.
4141

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 Twitter Bootstrap",
4-
"version": "2.0.0-beta.1",
4+
"version": "2.0.0-beta.2",
55
"dependencies": {
66
"angular": "~1.2.5",
77
"angular-animate": "~1.2.5",

dist/angular-strap.js

+289-29
Large diffs are not rendered by default.

dist/angular-strap.min.js

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

dist/angular-strap.min.map

+1-1
Original file line numberDiff line numberDiff line change

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.0.0-beta.1 - 2014-01-07
3+
* @version v2.0.0-beta.2 - 2014-01-10
44
* @link http://mgcrea.github.io/angular-strap
55
* @author Olivier Louvignes <olivier@mg-crea.com>
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

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* angular-strap
3-
* @version v2.0.0-beta.1 - 2014-01-07
3+
* @version v2.0.0-beta.2 - 2014-01-10
44
* @link http://mgcrea.github.io/angular-strap
55
* @author Olivier Louvignes <olivier@mg-crea.com>
66
* @license MIT License, http://www.opensource.org/licenses/MIT
@@ -73,6 +73,7 @@ angular.module('mgcrea.ngStrap.alert', []).run([
7373
'template',
7474
'placement',
7575
'keyboard',
76+
'html',
7677
'container',
7778
'animation',
7879
'duration'

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.

dist/modules/aside.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* angular-strap
3-
* @version v2.0.0-beta.1 - 2014-01-07
3+
* @version v2.0.0-beta.2 - 2014-01-10
44
* @link http://mgcrea.github.io/angular-strap
55
* @author Olivier Louvignes <olivier@mg-crea.com>
66
* @license MIT License, http://www.opensource.org/licenses/MIT
@@ -9,7 +9,7 @@
99
angular.module('mgcrea.ngStrap.aside', ['mgcrea.ngStrap.modal']).run([
1010
'$templateCache',
1111
function ($templateCache) {
12-
var template = '' + '<div class="aside" tabindex="-1" role="dialog">' + '<div class="aside-dialog">' + '<div class="aside-content">' + '<div class="aside-header" ng-show="title">' + '<button type="button" class="close" ng-click="$hide()">&times;</button>' + '<h4 class="aside-title" ng-bind-html="title"></h4>' + '</div>' + '<div class="aside-body" ng-show="content" ng-bind-html="content"></div>' + '<div class="aside-footer">' + '<button type="button" class="btn btn-default" ng-click="$hide()">Close</button>' + '</div>' + '</div>' + '</div>' + '</div>';
12+
var template = '' + '<div class="aside" tabindex="-1" role="dialog">' + '<div class="aside-dialog">' + '<div class="aside-content">' + '<div class="aside-header" ng-show="title">' + '<button type="button" class="close" ng-click="$hide()">&times;</button>' + '<h4 class="aside-title" ng-bind="title"></h4>' + '</div>' + '<div class="aside-body" ng-show="content" ng-bind="content"></div>' + '<div class="aside-footer">' + '<button type="button" class="btn btn-default" ng-click="$hide()">Close</button>' + '</div>' + '</div>' + '</div>' + '</div>';
1313
$templateCache.put('$aside', template);
1414
}
1515
]).provider('$aside', function () {
@@ -22,6 +22,7 @@ angular.module('mgcrea.ngStrap.aside', ['mgcrea.ngStrap.modal']).run([
2222
element: null,
2323
backdrop: true,
2424
keyboard: true,
25+
html: false,
2526
show: true
2627
};
2728
this.$get = [
@@ -57,7 +58,7 @@ angular.module('mgcrea.ngStrap.aside', ['mgcrea.ngStrap.modal']).run([
5758
'placement',
5859
'backdrop',
5960
'keyboard',
60-
'show',
61+
'html',
6162
'container',
6263
'animation'
6364
], function (key) {

0 commit comments

Comments
 (0)