Arthur Klepchukov
Arthur Klepchukov
To support deleting tabs, I had to adapt my `onTab` handler to: ``` js handleTab(evt) { let newState; let { editorState } = this.state; if (evt.shiftKey) { // since backspace...
Sad to see this wither on the vine. Would be very helpful!
Neat find, have never seen that syntax. I didn't see the extra arguments described on [W3schools](http://www.w3schools.com/jsref/met_win_settimeout.asp) but only at [MDC](https://developer.mozilla.org/en/DOM/window.setTimeout). The latter says **"Note that passing additional parameters to the...
Would love to see this in Content Generator as I've found Craft Data symbol overrides don't work well with my symbols at all. I tend to lose the ability to...
@mockdeep just an FYI that could be totally unrelated but I solved a recent performance issue with browserify in production. Seems like [live compilation](http://guides.rubyonrails.org/asset_pipeline.html#live-compilation), enabled by this line: ``` ruby...
Just a note that multiple JS manifests in the asset pipeline seem to considerably slow down browserify-rails, regardless of whether they each have one CommonJS `require()` or several.
I think I've traced this particular effect to [this part of #sanitize](https://github.com/cantino/ruby-readability/blob/cc1b0d249b4b52e4050ef48ea2d7435b24c61934/lib/readability.rb#L410): ```rb node.css("h1, h2, h3, h4, h5, h6").each do |header| header.remove if class_weight(header) < 0 || get_link_density(header) > 0.33...
This is one way of turning things off locally: ``` ruby # config/initializers/mixpanel.rb if Rails.env.development? # silence local SSL errors Mixpanel.config_http do |http| http.verify_mode = OpenSSL::SSL::VERIFY_NONE end end ```