James Williams
James Williams
@criley see https://www.computerminds.co.uk/articles/apply-drupal-9-compatibility-patches-composer - you have to override the package compatibility metadata so that this plugin gets chance to apply the necessary patch.
I have not actually tested this yet, but I just wanted to post this up for now in the meantime in case anyone has any thoughts to add that would...
Note that we've ended up rolling our own set of tools inspired by all this, as we're likely to go down a slightly different route. See https://www.drupal.org/project/cm_config_tools . The main...
Handy workaround which I find _does_ work for autocompletion & type-hinting etc: use `\Drupal::getContainer()->get('service.name')` as a drop-in replacement for `Drupal::service('service.name')` ! _update: oh gosh, that's exactly what the OP said....
Looks like this was solved in https://github.com/diegonakamashi/ril-chrome/commit/2877d5783901d8814a184f32853c8b6760590630; thank you!
This looks the same as https://github.com/ckeditor/ckeditor5/issues/11767 to me? This issue #10041 might be more recent, but that #11767 one has some good screenshots as a reference.
Interesting! Why is a `tabindex=-1` on a div doing _anything_ though? Div elements shouldn’t be tabbable anyway, so I would have thought this change was harmless (even if there are...
> `tabindex="-1"` doesn't mean "tabbable", it means "programmatically focusable". otherwise, you call `.focus()` in JS but focus isn't _really_ moved Huh, OK, I see! Well maybe there's an idea in...