Amy Pellegrini
Amy Pellegrini
I'm facing this issue as well. While the audio is being triggered with a user action from a UX perspective, there is a level of indirection from the moment the...
The module name `midi-js` is already taken by Microsoft, with and empty (or private?) repo :(
@chrisnorman7 I find a bit difficult to include this as a module in a Github page, since GH pages are static, so the only approach would be to have a...
This is awesome! Thank you @mscuthbert
My apologies! I assumed given the previous conversation that there was no intent to take any further action in this repository. Issue re-opened.
@anescobar1991 @ThomasSimeroth Indeed, Jest provides a great API to extend the interactive mode CLI, you can find the docs here: https://jestjs.io/docs/en/watch-plugins
Is it possible to do the Android setup only? The tool assumes you need to setup both platforms, hence the issue with iOS. I know is not solving the issue,...
I'm having the same problem, but setting `defaultLayout` to either null or false is not fixing the issue: Code: ``` app.engine('.hbs', exphbs({ extname: '.hbs', defaultLayout: false })); app.use(morgan('dev')); app.use(express.static('dist')); app.set('views',...
Ok, I've fixed the issue by setting layout to false at render call: ``` app.get('/', (req, res) => { res.render('index', { layout: false, serverRender: ReactDOMServer.renderToString(), styleSheetHref: 'assets/home.css', }); }); ```...
@JSteunou @Romick2005 Yes, I'm with you on this one, I just needed to work around the issue to keep the app running, but I don't think is something I want...