varkor

Results 184 comments of varkor

Look at the code invoked by the "Save" button. https://github.com/varkor/quiver/blob/c567eb61a3dca41e8b95d50009f67f0d2da37192/src/ui.js#L5166-L5176 This saves the current diagram to the URL. You could save the diagram every time the diagram changes: I would...

Regarding adding this feature to **quiver** itself, I am open to this feature, but would need to work out what the best UI would be, e.g. a setting to enable/disable...

You're very welcome to experiment with this so that we can see how it works in practice and figure out the best user experience. Let me know if you have...

cc https://github.com/varkor/quiver/issues/13, which essentially also requested this feature, but was closed after manual saving was introduced.

For **quiver** itself, I think the URL itself should be updated, just like the save button does currently. I.e. when the auto-save option is enabled, it should act like the...

Checkboxes should respond to the `"change"` event.

**quiver** has a custom API for DOM elements, which you can find in `dom.js`. To set an attribute, you would write `button.set_attributes({ type: "checkbox" });`. While experimenting, you may find...

Thank you for this analysis: I have been aware that there are differences in how the positions and bouncing boxes were calculated, but did not dig into precisely what they...

@steskalja: regarding the original query, if there is a **quiver** desktop app in the future, I think the most likely route is via [Electron](https://www.electronjs.org/). This would not help with the...

Drag-selecting currently conflicts with "drag to create a new vertex and edge", so to support that feature, you'd need to enter a different mode to do so. That might be...