Skip to content
This repository was archived by the owner on Jun 14, 2019. It is now read-only.

Commit 0489131

Browse files
committed
Release 1.1.4
1 parent c0ad649 commit 0489131

File tree

4 files changed

+18
-9
lines changed

4 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
<a name="1.1.4"></a>
2+
### 1.1.4 (2015-05-01)
3+
4+
5+
#### Bug Fixes
6+
7+
* **service:** fix possible internal npe on de-register (also as 913ac74) ([6aa86bc1](http://github.com/knalli/angular-vertxbus/commit/6aa86bc1c5c710a5ad5c6f8d3460aad00794fa0b))
8+
9+
110
<a name="1.1.3"></a>
211
### 1.1.3 (2015-04-14)
312

dist/angular-vertxbus.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! angular-vertxbus - v1.1.3 - 2015-04-14
1+
/*! angular-vertxbus - v1.1.4 - 2015-05-01
22
* http://github.com/knalli/angular-vertxbus
33
* Copyright (c) 2015 ; Licensed */
44
(function() {
@@ -662,9 +662,9 @@
662662
if (index > -1) {
663663
wrapped.handlers[address].splice(index, 1);
664664
}
665-
}
666-
if (wrapped.handlers[address].length < 1) {
667-
wrapped.handlers[address] = void 0;
665+
if (wrapped.handlers[address].length < 1) {
666+
wrapped.handlers[address] = void 0;
667+
}
668668
}
669669
if (connectionState === vertxEventBus.EventBus.OPEN) {
670670
return util.unregisterHandler(address, callback);

0 commit comments

Comments
 (0)