fix bugs about recycling in components, and styles when reusing style object

This commit is contained in:
Leo Horie 2016-06-02 21:42:18 -04:00
parent 86673f8d16
commit f9ef480b34
5 changed files with 157 additions and 11 deletions

View file

@ -1,3 +1,3 @@
"use strict"
module.exports = typeof process === "object" ? process.nextTick : window.setImmediate || window.setTimeout
module.exports = typeof setImmediate === "function" ? setImmediate : setTimeout