Dennis Hackethal

Results 20 issues of Dennis Hackethal

```ts $('#foo').slider({ ticks: [1,2,3] }); ``` So far so good, slider appears and works. Then: ```ts $('#foo').slider('setAttribute', 'ticks', [1,2,3,4]); $('#foo').slider('refresh'); ``` Error: ```ts Uncaught TypeError: Cannot read property 'style' of...

bug

I need to validate that of two object properties, at least one is populated: ```js message.content.length || message.images.length ``` How do you do that using superstruct? On a (potentially) separate...

How do I create a single file, non hot-reloading production build?

I understand Figwheel allows me to specify different builds. (Perhaps another way to think of them is as environments?) Based on the build/environment, I may require a different behavior in...

I'm new to this gem. Perusing the Readme, I couldn't find a method to retrieve all versions of a record. I suppose I could just do: ```ruby [1..record.log_size].map { |v|...

enhancement

**I'm submitting a ...** (check one with "x") ``` [x] bug report => search github for a similar issue or PR before submitting [ ] feature request [ ] support...

type: bug/fix
freq3: high
area: router
P3

## Environment - Ruby 2.7.2 - Rails 6.1.4.6 - Devise 4.8.1 ## Current behavior Use of `after_sign_in_path_for` does not retain URL fragments. Browsers don't share URL fragments with servers in...

Fixes the first issue mentioned in #357. I describe the bug in more detail here: https://github.com/mixmark-io/turndown/issues/357#issuecomment-1694699312 The modified tests technically already cover the bug fix but I added a couple...

Would be useful to add a `step` parameter to the `list_item` method for ordered lists. That would allow users to do the following: ```ruby def list_item text, list_type, step =...

Markdown is known for resetting the counter on broken-up ordered lists, where this... ``` 1. Foo 2. Bar Some interruption here 3. Baz ``` ...turns into... ``` 1. Foo 2....