Simon Chester
Simon Chester
This is still broken in JAWS 2024.2310.70. @stevefaulkner sorry to bother, but do you know if this is on Freedom Scientific/Vispero's radar at all?
Prototype.js creates a global object called Hash. This is an issue with prototype, not js-hash. If you want to make js-hash work with prototype, go to line 37 of Hash.js,...
Just an idea: ``` javascript key.twostep('g', [ ['h', function(){ console.log("home") }], ['s', function(){ console.log("settings") }] ]); ```
I've been using it locally for a while and discovered some issues with handling of args recently, will just convert it to a draft until I fix those
@derschatta I still need to solve the issue with passing arguments -- it will fail if it gets passed arguments that are too complex. I'll try and take a look...
Fixed the issues. Bash is currently broken though, so it needs #282 first. Things you can do: * `tphp` -- start your preferred shell in the php container (make sure...
Changed `INTERACTIVE_SHELL` default to `zsh`, seems like hardly anybody is using `bash` given #282
Oh weird. I think Apple ships an ancient bash version that doesn't seem to support that parameter expansion syntax, will see if I can find another way to do it...
@derschatta okay, that should be fixed now
It looks like this is happening because the hook inserted in `makeOptionsHot()` is not recording the right `record.Ctor` value for the parent component. https://github.com/vuejs/vue-hot-reload-api/blob/5dc0e49332802fa0154de3fed7dde31437309698/src/index.js#L86-L92 If you have component `B` that...