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

Commit 0bbc9c8

Browse files
committed
Release 1.1.0
1 parent 000e4e7 commit 0bbc9c8

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
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.1"></a>
2+
### 1.1.1 (2015-04-09)
3+
4+
5+
#### Bug Fixes
6+
7+
* **wrapper:** ensure eventbus is online when removing a handler ([a3dd555a](http://github.com/knalli/angular-vertxbus/commit/a3dd555afb3760defd690530c3578f39a134ec0c), closes [#48](http://github.com/knalli/angular-vertxbus/issues/48))
8+
9+
110
<a name="1.1.0"></a>
211
## 1.1.0 (2015-04-06)
312

dist/angular-vertxbus.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! angular-vertxbus - v1.1.0 - 2015-04-06
1+
/*! angular-vertxbus - v1.1.1 - 2015-04-09
22
* http://github.com/knalli/angular-vertxbus
33
* Copyright (c) 2015 ; Licensed */
44
(function() {
@@ -220,7 +220,9 @@
220220
return deconstructor;
221221
},
222222
unregisterHandler: function(address, handler) {
223-
return eventBus.unregisterHandler(address, handler);
223+
if (eventBus.readyState() === EventBusStub.EventBus.OPEN) {
224+
return eventBus.unregisterHandler(address, handler);
225+
}
224226
},
225227
readyState: function() {
226228
return eventBus.readyState();

0 commit comments

Comments
 (0)