Smile 笑容

Meteora.options.debug.enable bug

Meteora 0.71 , /meteora/lib/meteora/meteora.js  line 299

if (document.body && Meteora.options.debug.enable) {

has a error on the ie9.

replace with this:

if (document.body && Meteora.options && Meteora.options.debug && Meteora.options.debug.enable) {

it’s will be done.

这个问题出在新的javascript解析器上,如果没有设置这个 debug属性会导致 调用 debug属性结果为 null 出现错误停止继续运行。

修改后,可以解除这个问题。