Skip to content

Commit

Permalink
Updates changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
jalik committed Nov 21, 2017
1 parent 78063f5 commit f09fd00
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ In the case that you need to remove a previously attached listener, here is the
import {Observer} from "jk-observer";

const doubleClickListener = function() {
console.log("double click detected");
// This avoid the current function to be called
// on the next "doubleClick" event notification.
observer.detach("doubleClick", doubleClickListener);
console.log("double click detected");
};

const observer = new Observer();
Expand All @@ -71,6 +71,9 @@ observer.notify("doubleClick");

## Changelog

### v1.0.1
- Updates documentation

### v1.0.0
- First public release

Expand Down

0 comments on commit f09fd00

Please sign in to comment.