Skip to content
Snippets Groups Projects
Verified Commit 756ee0ca authored by Alex Pott's avatar Alex Pott
Browse files

Issue #3418999 by quietone: Correct spelling of autocomplete type words

(cherry picked from commit 99fb9996)
parent 9a8588df
No related branches found
No related tags found
24 merge requests!10663Issue #3495778: Update phpdoc in FileSaveHtaccessLoggingTest,!10451Issue #3472458 by watergate, smustgrave: CKEditor 5 show blocks label is not translated,!103032838547 Fix punctuation rules for inline label suffix colon with CSS only,!10150Issue #3467294 by quietone, nod_, smustgrave, catch, longwave: Change string...,!10130Resolve #3480321 "Second level menu",!9936Issue #3483087: Check the module:// prefix in the translation server path and replace it with the actual module path,!9933Issue #3394728 by ankondrat4: Undefined array key "#prefix" and deprecated function: explode() in Drupal\file\Element\ManagedFile::uploadAjaxCallback(),!9914Issue #3451136 by quietone, gapple, ghost of drupal past: Improve...,!9882Draft: Issue #3481777 In bulk_form ensure the triggering element is the bulk_form button,!9839Issue #3445469 by pooja_sharma, smustgrave: Add additional test coverage for...,!9815Issue #3480025: There is no way to remove entity cache items,!9757Issue #3478869 Add "All" or overview links to parent links,!9752Issue #3439910 by pooja_sharma, vensires: Fix Toolbar tests that rely on UID1's super user behavior,!9749Issue #3439910 by pooja_sharma, vensires: Fix Toolbar tests that rely on UID1's super user behavior,!9678Issue #3465132 by catch, Spokje, nod_: Show test run time by class in run-tests.sh output,!9578Issue #3304746 by scott_euser, casey, smustgrave: BigPipe cannot handle (GET)...,!9449Issue #3344041: Allow textarea widgets to be used for text (formatted) fields,!8945🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥🔥...,!8893Resolve #3444391 "Navigation center sm logo",!8772Issue #3445909 by seanB, smustgrave, alexpott, catch: Add static caching to...,!8723Make dblog entities,!8708Filter out disabled display extenders on save,!8691#3459116 - Update Manager Settings: Validate same email address added multiple times,!8665Issue #3449743 by catch: Try to optimize test ordering when run-tests.sh is...
Pipeline #213771 passed with warnings
Pipeline: drupal

#213778

    ...@@ -148,7 +148,7 @@ ...@@ -148,7 +148,7 @@
    } }
    /** /**
    * Handles an autocompletefocus event. * Handles an autocomplete focus event.
    * *
    * @return {boolean} * @return {boolean}
    * Always returns false. * Always returns false.
    ...@@ -158,7 +158,7 @@ ...@@ -158,7 +158,7 @@
    } }
    /** /**
    * Handles an autocompleteselect event. * Handles an autocomplete select event.
    * *
    * @param {jQuery.Event} event * @param {jQuery.Event} event
    * The event triggered. * The event triggered.
    ......
    ...@@ -20,9 +20,6 @@ arrowstop ...@@ -20,9 +20,6 @@ arrowstop
    arrowthick arrowthick
    arrowthickstop arrowthickstop
    assertable assertable
    autocompletefocus
    autocompleteselect
    autocompleting
    autoconfiguration autoconfiguration
    autoconfigured autoconfigured
    autocreate autocreate
    ......
    // cspell:ignore is-autocompleting
    module.exports = { module.exports = {
    '@tags': ['core'], '@tags': ['core'],
    ...@@ -28,7 +30,8 @@ module.exports = { ...@@ -28,7 +30,8 @@ module.exports = {
    .waitForElementVisible('body', 1000); .waitForElementVisible('body', 1000);
    // Tests that entering a character from the // Tests that entering a character from the
    // data-autocomplete-first-character-blacklist doesn't start autocompleting. // data-autocomplete-first-character-blacklist doesn't start the
    // autocomplete process.
    browser browser
    .setValue('[name="autocomplete_4"]', '/') .setValue('[name="autocomplete_4"]', '/')
    .pause(1000) .pause(1000)
    ......
    ...@@ -12,6 +12,8 @@ ...@@ -12,6 +12,8 @@
    * @see autocomplete.js * @see autocomplete.js
    */ */
    /* cspell:ignore is-autocompleting */
    /** /**
    * Since the autocomplete library is attached conditionally and not globally, * Since the autocomplete library is attached conditionally and not globally,
    * we can be 99% sure that the default icon will be used. * we can be 99% sure that the default icon will be used.
    ...@@ -19,14 +21,14 @@ ...@@ -19,14 +21,14 @@
    * autocomplete input's background — until are sure that it will be pushed by * autocomplete input's background — until are sure that it will be pushed by
    * the server with HTTP/2. * the server with HTTP/2.
    * *
    * The autocompleting (active) state's background-image is inlined because * The active autocomplete state's background-image is inlined because non-used
    * non-used CSS selectors are usually ignored; popular browsers don't download * CSS selectors are usually ignored; popular browsers don't download their
    * their 'url' references. * 'url' references.
    * If these selectors become active, the browser needs some time for painting * If these selectors become active, the browser needs some time for painting
    * previously ignored remote asset: it should get it from server, parse it and * previously ignored remote asset: it should get it from server, parse it and
    * repaint the background of autocomplete field. With the inlined background we * repaint the background of autocomplete field. With the inlined background we
    * can prevent an additional timeout caused by a new request/response pair. * can prevent an additional timeout caused by a new request/response pair.
    * Besides this, the autocompleting event itself may easily finish before the * Besides this, the autocomplete event itself may easily finish before the
    * missing asset gets downloaded/parsed/painted, and the missing instant visual * missing asset gets downloaded/parsed/painted, and the missing instant visual
    * feedback would be a usability/accessibility issue as well. * feedback would be a usability/accessibility issue as well.
    */ */
    ...@@ -53,7 +55,7 @@ ...@@ -53,7 +55,7 @@
    } }
    /** /**
    * Autocomplete wrapper for autocompleting message. * Autocomplete wrapper for autocomplete message.
    */ */
    .claro-autocomplete { .claro-autocomplete {
    ......
    ...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
    * @see autocomplete.js * @see autocomplete.js
    */ */
    /* cspell:ignore is-autocompleting */
    /** /**
    * Since the autocomplete library is attached conditionally and not globally, * Since the autocomplete library is attached conditionally and not globally,
    * we can be 99% sure that the default icon will be used. * we can be 99% sure that the default icon will be used.
    ...@@ -12,14 +14,14 @@ ...@@ -12,14 +14,14 @@
    * autocomplete input's background — until are sure that it will be pushed by * autocomplete input's background — until are sure that it will be pushed by
    * the server with HTTP/2. * the server with HTTP/2.
    * *
    * The autocompleting (active) state's background-image is inlined because * The active autocomplete state's background-image is inlined because non-used
    * non-used CSS selectors are usually ignored; popular browsers don't download * CSS selectors are usually ignored; popular browsers don't download their
    * their 'url' references. * 'url' references.
    * If these selectors become active, the browser needs some time for painting * If these selectors become active, the browser needs some time for painting
    * previously ignored remote asset: it should get it from server, parse it and * previously ignored remote asset: it should get it from server, parse it and
    * repaint the background of autocomplete field. With the inlined background we * repaint the background of autocomplete field. With the inlined background we
    * can prevent an additional timeout caused by a new request/response pair. * can prevent an additional timeout caused by a new request/response pair.
    * Besides this, the autocompleting event itself may easily finish before the * Besides this, the autocomplete event itself may easily finish before the
    * missing asset gets downloaded/parsed/painted, and the missing instant visual * missing asset gets downloaded/parsed/painted, and the missing instant visual
    * feedback would be a usability/accessibility issue as well. * feedback would be a usability/accessibility issue as well.
    */ */
    ...@@ -50,7 +52,7 @@ ...@@ -50,7 +52,7 @@
    } }
    /** /**
    * Autocomplete wrapper for autocompleting message. * Autocomplete wrapper for autocomplete message.
    */ */
    .claro-autocomplete { .claro-autocomplete {
    position: relative; position: relative;
    ......
    ...@@ -3,6 +3,8 @@ ...@@ -3,6 +3,8 @@
    * Claro's enhancement for autocomplete form element. * Claro's enhancement for autocomplete form element.
    */ */
    // cspell:ignore is-autocompleting
    (($, Drupal, once) => { (($, Drupal, once) => {
    Drupal.behaviors.claroAutoCompete = { Drupal.behaviors.claroAutoCompete = {
    attach(context) { attach(context) {
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Finish editing this message first!
    Please register or to comment