Alvaro Pareja-Lecaros
Alvaro Pareja-Lecaros
@suanmei if this is resolved, can you close out your issue?
You'll have to modify the width/positioning of the lines to be +x/-x, where x is the height delta.
@daybrush It is reasonable to have different elements for each use case; that is, seeing three would make sense. But we don't see three elements, we see a new element...
I think I can just use the `moveable.getManager().state`/`getState()` for managing the control box size. Removing the elements that are no longer used would be great though.
If you want to handle removing it, you can do so in the `changeTargets` handler ```javascript let controlBox = undefined function changeTargets(e) { if (controlBox !== e.currentTarget.getControlBoxElement()) { controlBox?.remove() controlBox...
The `$apply()` in `_sync()` is needed for letting angularjs know things have changed. It seems to be unable to find the relevant comment node it is expecting whilst dragging from...
@bgrins, @NZSmartie A typings file, `d.ts`, can now be generated from javascript files via JSDocs via a `tsconfig` given the configurations of ``` { allowJs: true, declarations: true, } ```...