Fixing handleResize namespacing

This commit is contained in:
Eloízio Salgado 2017-01-17 09:51:33 -02:00 committed by Emanuel F. Oliveira
parent 123007d751
commit a4e7aa86ab
2 changed files with 3 additions and 3 deletions

View File

@ -4,7 +4,7 @@ Template.viewerSection.events({
return;
}
handleResize();
window.ResizeViewportManager.handleResize();
}
});

View File

@ -1,10 +1,10 @@
Template.flexboxLayout.events({
'transitionend .sidebarMenu'(event) {
if (!event.target.classList.contains('sidebarMenu')) {
return;
return;
}
handleResize();
window.ResizeViewportManager.handleResize();
}
});