@dolphinweex/weex-vue-render 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.common.js +1 -1
- package/package.json +1 -1
package/dist/index.common.js
CHANGED
|
@@ -9596,7 +9596,7 @@ var animation = {
|
|
|
9596
9596
|
* @param {String} callback
|
|
9597
9597
|
*/
|
|
9598
9598
|
transition: function transition (vnode, config, callback) {
|
|
9599
|
-
if (!config.styles) { return }
|
|
9599
|
+
if (!vnode || !config.styles) { return }
|
|
9600
9600
|
return transitionOnce(vnode, config, function () {
|
|
9601
9601
|
callback && callback();
|
|
9602
9602
|
})
|
package/package.json
CHANGED