Pablo Fernandez
Pablo Fernandez
Can it be backported? Would it be merged back into NZKoz/rails_xss if I backport it?
Agreed. We'll... That is if it was a full keyboard. I would buy it right away.
I'd also like to get one.
I'd also like to have F keys, or even better, extra rows/columns of programmable keys.
Is there any help needed with this work?
Adding this to the omniauth initializer of my Rails project fixed/workarounded this issue: ``` ruby class NonExplodingFailureEndpoint attr_reader :env def self.call(env) new(env).call end def initialize(env) @env = env end def...
A smaller workaround: ``` ruby class NonExplodingFailureEndpoint < OmniAuth::FailureEndpoint def call redirect_to_failure end end OmniAuth.config.on_failure = NonExplodingFailureEndpoint ```
Related issue: #1096, specially starting at: https://github.com/react-toolbox/react-toolbox/issues/1096#issuecomment-316161179
I'll continue here, as the other issue is closed: Here I started trying to make it work with the new layout: https://github.com/pupeno/packages/blob/c1461aaf126101f718b6016f2078017722fc994e/react-toolbox/resources/webpack.config.js At this point I'm getting this error: ```...
Apparently, that's due to ``` export Ripple from './ripple'; ``` not being standard ES6 and requiring the [transform export extension](https://babeljs.io/docs/plugins/transform-export-extensions/) (but I'm not sure how to use it).