chore(package): update stencil

This commit is contained in:
Adam Bradley
2018-05-30 12:01:44 -05:00
parent 3cdc696847
commit 128ed60510
4 changed files with 2036 additions and 2042 deletions

View File

@ -280,8 +280,8 @@ export class VirtualScroll {
this.setCellHeight(cell, height);
}
};
if ('componentOnReady' in node) {
node.componentOnReady(update);
if (node && node.componentOnReady) {
node.componentOnReady().then(update);
} else {
update();
}