Neale Upstone

Results 47 comments of Neale Upstone

Are you suggesting Typescript because you want to contribute to jSignature? If you just want to use it, then that's easy enough from Typescript Assuming you have you can load...

Hi, If you've got jsignature.d.ts working, then do tell. I've found trying to get JQuery plugins working that way to be painful, although I last tried in Typescript 1.3. I'm...

So do you mean that the following is the intent? ``` .modal-body { position: static; margin: 0; height: auto; max-height: none; overflow: visible; } .modal-overflow .modal-body { height: auto !important;...

There are fundamental changes in markup (e.g. introduction of modal-dialog and modal-content divs) in Bootstrap 3/3.1, that I think it would make sense to create 2.x and 3.0.x branches of...

I've just come to asdf and found myself at this ticket having done: ``` $ asdf install nodejs latest:16 nodejs 16.11.1 is already installed $ asdf local nodejs latest:16 version...

@nvoxland I've just gone back to us having got stuck at 3.8.9 because 3.10.3 broke for us. Ours breaks on the table referenced as `tableName="groups"` which in 3.10.3 fails because...

Here's another example of this being weird: ```kotlin interface Value { val raw: T @JsonValue fun toExternalForm() = raw } data class Id(override val raw: String) : Value { companion...

Note on the above if it helps anyone. The following works for Kotlin data classes ```kotlin @JvmRecord data class Id @JsonCreator(mode = DELEGATING) constructor(override val raw: String) : Value {...

FYI. Despite the above workaround, we've gone a different route for our Kotlin data classes. We've had some PRs merged into https://github.com/bertilmuth/moonwlker so that it now supports value types like...

@rehrumesh Is anyone going to address this? We've been affected by this due to npm audit fix too. I think going to 1.2.38 would make the most sense.