From 46051a2877916f90ea16a0906381c5b7047c9032 Mon Sep 17 00:00:00 2001 From: Rahul Prabhakaran Date: Thu, 25 Oct 2018 13:04:00 +0530 Subject: [PATCH 1/2] Added destinationChange in README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 8cd0ced..144e236 100644 --- a/README.md +++ b/README.md @@ -48,6 +48,7 @@ sort is not set and compare is set, then sort will be set ``true``. - **source** - The source array of objects or strings for the list. (This is the universal, master list of all possible objects.) - **destination** The destination array of objects or strings selected from the source. Note, the ``destination`` array can have prexisting elements. - **disabled** - The dual-list is disabled, default is ``false``. +- **destinationChange** - An event listener which is triggered when the destination array changes. (This Can be used to trigger events during drag and drop.) For more usage examples, see the [`demo-app.component.ts`](https://github.com/czeckd/angular-dual-listbox/blob/master/app/demo-app.component.ts). From 6c4b454adecc781bfdd94022c2167147a677317d Mon Sep 17 00:00:00 2001 From: Rahul Prabhakaran Date: Thu, 25 Oct 2018 13:05:32 +0530 Subject: [PATCH 2/2] Added destinationChange event in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 144e236..852776b 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ sort is not set and compare is set, then sort will be set ``true``. - **source** - The source array of objects or strings for the list. (This is the universal, master list of all possible objects.) - **destination** The destination array of objects or strings selected from the source. Note, the ``destination`` array can have prexisting elements. - **disabled** - The dual-list is disabled, default is ``false``. -- **destinationChange** - An event listener which is triggered when the destination array changes. (This Can be used to trigger events during drag and drop.) +- **destinationChange** - An event listener which is triggered when the destination array changes. (This can be used to trigger events during drag and drop.) For more usage examples, see the [`demo-app.component.ts`](https://github.com/czeckd/angular-dual-listbox/blob/master/app/demo-app.component.ts).