Browse Source

[weex] disable transition-group move animation for now

dev
Evan You 8 years ago
parent
commit
e1d2576552
  1. 20
      src/platforms/weex/runtime/components/transition-group.js

20
src/platforms/weex/runtime/components/transition-group.js

@ -136,13 +136,13 @@ export default {
}
}
function callPendingCbs (c) {
/* istanbul ignore if */
if (c.elm._moveCb) {
c.elm._moveCb()
}
/* istanbul ignore if */
if (c.elm._enterCb) {
c.elm._enterCb()
}
}
// function callPendingCbs (c) {
// /* istanbul ignore if */
// if (c.elm._moveCb) {
// c.elm._moveCb()
// }
// /* istanbul ignore if */
// if (c.elm._enterCb) {
// c.elm._enterCb()
// }
// }

Loading…
Cancel
Save