Kalashnikov Ilya
Kalashnikov Ilya
> Is possible to implement the async call ajax for json api? Not sure I understand the question, but yes, I guess it should be. `AbstractTransport` is a base ZombieBox...
Am I correct in understanding `@defines` are currently unusable with modules? Since defines are expected to be in global scope, a file containing defines can only be a script, but...
This is not limited to classes. `collection.js`: ```js /** * @typedef {number} */ export var TYPE; export default {TYPE} ``` and `index.js`: ```js import {TYPE} from './collection.js'; import collection from...
Apologizes for bringing modules into the equation, looks like I jumped to conclusions. The workaround is good enough for classes, but it doesn't seem to work for the second example...
My understanding is `fastSwitchEnabled` affects forward buffer, whereas I'm talking about past buffer. So, in my example on 15 second mark fast switch will cause the actual switch to happen...
I figured duplicate requests, those are `segmentsController.updateInitData` and `segmentsController.updateSegmentData` (which result in `loadInitialization` and `loadSegments` of `SegmentBaseLoader`) calls made simultaneously. It seems they often result in identical 0-1500 bytes request,...