schindld
schindld
Just run ``` docker run -it --rm c0b0/chrome-stable /opt/google/chrome/google-chrome --version ``` It will run the container long enough to run `google-chrome --version`, which just prints the version number and exits.
>Was wondering if its possible to make the graph scrollable vs movable with the cursor Do you mean make the graph scrollable with the scroll wheel (instead of zoomable)? If...
@marcellino-ornelas Here's how I did something similar (I still wanted the zoom-on-scroll feature, but wanted to pan-on-scroll if shift or ctrl were held): ```javascript // Custom zoom handler to allow...
I just found a bug with my solution above - there's already a cached transform, so caching it in `zoom` can lead to visual jumps. I'll edit the code in...
I think the fix for this is to add `event.stopPropagation()` to the end of `onButtonClick` to prevent the button clicks from also triggering the node click handler. The work-around @bumbeishvili...
@spyro2000 easiest way it to just inline your styles directly on your svg's elements. And don't use CSS variables. Use js template string variables instead. Browsers ignore external stylesheets for...
Thanks, I'll go with 3 for now
If this is too hard to implement, maybe offer us a config option (another value for **publish_mode** maybe?) that uses editorial_workflow, but re-uses the same branch, **draft**, for all draft...
`markupsafe==2.0.1` should be added to the requirements.txt file.
I got diacritics to be included in searches by changing 2 places in fuzzy.js where comparisons are done... [Line 50](https://github.com/mattyork/fuzzy/blob/master/lib/fuzzy.js#L50): ```diff - , compareString = opts.caseSensitive && str || str.toLowerCase()...