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

Commit 74bcbaa

Browse files
committed
Release 1.1.3
1 parent d521e59 commit 74bcbaa

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-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.3"></a>
2+
### 1.1.3 (2015-04-14)
3+
4+
5+
#### Bug Fixes
6+
7+
* **service:** after a reconnect the deconstructor does not work anymore ([5ebbfc48](http://github.com/knalli/angular-vertxbus/commit/5ebbfc487ca34bd769ce84e741f093ff2f75b0c0))
8+
9+
110
<a name="1.1.2"></a>
211
### 1.1.2 (2015-04-13)
312

dist/angular-vertxbus.js

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/*! angular-vertxbus - v1.1.2 - 2015-04-13
1+
/*! angular-vertxbus - v1.1.3 - 2015-04-14
22
* http://github.com/knalli/angular-vertxbus
33
* Copyright (c) 2015 ; Licensed */
44
(function() {
@@ -629,7 +629,10 @@
629629
wrapped.handlers[address].push(callback);
630630
unregisterFn = null;
631631
if (connectionState === vertxEventBus.EventBus.OPEN) {
632-
unregisterFn = util.registerHandler(address, callback);
632+
util.registerHandler(address, callback);
633+
unregisterFn = function() {
634+
return util.unregisterHandler(address, callback);
635+
};
633636
}
634637

635638
/* and return the deregister callback */

0 commit comments

Comments
 (0)