Update css-media-query test. It's look like somebody forgot about that.

pull/723/head
Zhuravlev Yury 7 years ago
parent 246b4d70dc
commit ab607269f9

@ -111,7 +111,12 @@ function on(eventName, handler) {
function set(newState) {
this._set(assign({}, newState));
if (this._root._lock) return;
this._root._lock = true;
callAll(this._root._beforecreate);
callAll(this._root._oncreate);
callAll(this._root._aftercreate);
this._root._lock = false;
}
function callAll(fns) {

Loading…
Cancel
Save