Filatov Dmitry

Results 75 comments of Filatov Dmitry

This bug is existed only in IE10 or other versions of IE too?

IE8 uses `readyStateChange`, because it contains synchronous version of `postMessage`, see https://github.com/ymaps/modules/blob/master/modules.js#L345

> What if we will compare dependencies.length with declarationFunction arity and decide with mind on that how to call declarationFunction? What does it mean? Could you provide an example?

We sometimes specify some kind of dependencies which isn't used directly then within `declarationFunction`. It will be broken in such cases.

`modules.getStat()` can help you detect what module causes a problem.

Если уж так нужно это, то нельзя ли сделать, как обычно в bh, геттер/сеттер? ``` js bh.lib(name, value); bh.lib(name); ```

Я против алиаса. Не надо просто так делать несколько способов достичь одного и тоже результата.

@timocov Hi, Evgeny! Could you take a look here?

@phryneas Thank you for quick response! > Out of curiosity - what are you doing here that needs to happen before a render? We are building/committing/uncommitting/resetting our internal models based...

Very simplified approach looks like: ```tsx const MyComponent = ({ model }) => { const { loading } = useSomeDataQuery({ onCompleted(data) { model.setData(data); model.commit(); } }); return loading ? :...