Skip to content
Snippets Groups Projects
Verified Commit d5107c3a 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 9f145101
Branches
Tags
13 merge requests!10602Issue #3438769 by vinmayiswamy, antonnavi, michelle, amateescu: Sub workspace does not clear,!10301Issue #3469309 by mstrelan, smustgrave, moshe weitzman: Use one-time login...,!10187Issue #3487488 by dakwamine: ExtensionMimeTypeGuesser::guessMimeType must support file names with "0" (zero) like foo.0.zip,!9929Issue #3445469 by pooja_sharma, smustgrave: Add additional test coverage for...,!9787Resolve issue 3479427 - bootstrap barrio issue under Windows,!9742Issue #3463908 by catch, quietone: Split OptionsFieldUiTest into two,!9526Issue #3458177 by mondrake, catch, quietone, godotislate, longwave, larowlan,...,!8949Backport .gitlabci.yml changes.,!8738Issue #3424162 by camilledavis, dineshkumarbollu, smustgrave: Claro...,!8704Make greek characters available in ckeditor5,!6502Draft: Resolve #2938524 "Plach testing issue",!38582585169-10.1.x,!3226Issue #2987537: Custom menu link entity type should not declare "bundle" entity key
Pipeline #214508 passed with warnings
Pipeline: drupal

#214549

    Pipeline: drupal

    #214541

      Pipeline: drupal

      #214534

        +6
        ...@@ -149,7 +149,7 @@ ...@@ -149,7 +149,7 @@
        } }
        /** /**
        * Handles an autocompletefocus event. * Handles an autocomplete focus event.
        * *
        * @return {boolean} * @return {boolean}
        * Always returns false. * Always returns false.
        ...@@ -159,7 +159,7 @@ ...@@ -159,7 +159,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
        autoconfigure autoconfigure
        autoconfigured autoconfigured
        ......
        // 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.
        Please register or to comment