Ardo

Results 17 comments of Ardo

Facing this issue as well. The way to solve it for us is to just create an audio track and disable it. ``` createLocalTracks({ audio: doesMediaHaveAudio(mediaType) || /* Adding this...

This might be unnecessary, but what happens if you do: ``` callback={this.showReference.bind(this)} ```

I notice the same thing too: ``` 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _input = require('antd/lib/input'); var _input2 = _interopRequireDefault(_input); var _select = require('antd/lib/select'); var _select2 =...

Was wondering about this. Will switch to lodash.merge instead

Spent the last 3 hours ripping my hair off and finally found this. Wondering why it keeps going to `onCompleted` callback instead of `onError`. Even tried just having only `onError`...

Fork the repo to your own GitHub account. Create your own branch. Commit your changes there. Then submit a pull request.

I commented here: https://github.com/apollographql/react-apollo/issues/2900#issuecomment-621756066 Essentially, in my personal case, I just need to make sure to have this: ``` @apollo/react-hooks ^3.1.5 ==> this is the "fix" for me, making sure...

I don't know how to run `jz install`. ``` ardo@ardo-C02C8497MD6R fusionjs % jz install Error: Your cwd /Users/ardo/Documents/workspace/fusionjs is not listed in manifest.json. If you are at the wrong directory,...

Updated. But for the love of me, I still can't figure out how to run install.... ![image](https://user-images.githubusercontent.com/1380581/121102557-ba61a680-c7b2-11eb-9b9e-d225327548b0.png) And due to this, I cannot update `yarn.lock`.

@derSteffen Not quite sure what you mean but I believe you should be able to do something like: ``` $('.responsive-accordion-head', this).on('click', function() { $(this).find('.responsive-accordion-panel img.lazyload').trigger("unveil"); }); ```