Skip to content

Commit 9c5964a

Browse files
committed
* 'master' of https://github.com/philippd/angular-deferred-bootstrap: Release 0.1.3 Fixed bug that the resolve functions were called twice. Update README.md
2 parents 1c0dcd7 + 45d15e6 commit 9c5964a

File tree

5 files changed

+7
-6
lines changed

5 files changed

+7
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# angular-deferred-bootstrap [![Build Status](https://travis-ci.org/philippd/angular-deferred-bootstrap.svg?branch=master)](https://travis-ci.org/philippd/angular-deferred-bootstrap)
1+
# angular-deferred-bootstrap [![Build Status](https://travis-ci.org/philippd/angular-deferred-bootstrap.svg?branch=master)](https://travis-ci.org/philippd/angular-deferred-bootstrap) [![Coverage Status](https://img.shields.io/coveralls/philippd/angular-deferred-bootstrap.svg)](https://coveralls.io/r/philippd/angular-deferred-bootstrap?branch=master)
22

33
> Initialize your AngularJS app with constants loaded from the back-end.
44

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-deferred-bootstrap",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"homepage": "https://github.com/philippd/angular-deferred-bootstrap",
55
"authors": [
66
"Philipp Denzler <[email protected]>"

changelog.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22

3-
## 0.1.2. - 2014-08-04
3+
## 0.1.3 - 2014-08-08
4+
- Fixed bug that the resolve function was called twice during bootstrapping, see aea0e2058e3c5bb881a92a1b3c277e4f0aed6dc5
5+
6+
## 0.1.2 - 2014-08-04
47
- Added ability to specify which module a constant is added to, implemented by [@Shepless](https://github.com/Shepless), see [#16](https://github.com/philippd/angular-deferred-bootstrap/pull/16)
58

69
## 0.1.1 - 2014-07-04

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "angular-deferred-bootstrap",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "Initialize AngularJS apps with constants loaded from the back-end",
55
"homepage": "https://github.com/philippd/angular-deferred-bootstrap",
66
"repository": {

src/deferred-bootstrap.js

-2
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,6 @@ function bootstrap (configParam) {
143143
}
144144
}
145145

146-
forEach(config.resolve, callResolveFn);
147-
148146
if (config.moduleResolves) {
149147
forEach(config.moduleResolves, function (moduleResolve, index) {
150148
forEach(moduleResolve.resolve, function (resolveFunction, constantName) {

0 commit comments

Comments
 (0)