Transition : fix append (vanilla js broke svgs)

This commit is contained in:
Quentin Hocdé
2018-11-23 16:26:03 -05:00
parent fc6a18c457
commit b94a7d65b7

View File

@@ -177,7 +177,7 @@ export default class {
*/ */
append(oldView, newView) { append(oldView, newView) {
this.wrapper.appendChild(newView); $(this.wrapper).append($(newView));
// Add these 2 rAF if you want to have the containers overlapped // Add these 2 rAF if you want to have the containers overlapped
// Useful with a image transition, to prevent flickering // Useful with a image transition, to prevent flickering