fix(reorder-group): delegate dom reordering

fixes #15836
This commit is contained in:
Manu Mtz.-Almeida
2018-10-08 09:46:26 -05:00
parent 0983f95d9f
commit 5f659420fd
18 changed files with 279 additions and 219 deletions

View File

@ -622,6 +622,7 @@ export class ReorderGroup {
constructor(r: ElementRef) {
const el = r.nativeElement;
proxyMethods(this, el, ['complete']);
proxyInputs(this, el, ['disabled']);
proxyOutputs(this, el, ['ionItemReorder']);
}