Skip to content
Snippets Groups Projects
Verified Commit 6a1e323d authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #3418332 by Tom Konda: Replace uncommon HTMLDocument with Document in JSDoc

(cherry picked from commit ffcce9c6)
parent ec59a5fe
Branches
Tags
9 merge requests!8376Drupal views: adding more granularity to the ‘use ajax’ functionality,!8300Issue #3443586 View area displays even when parent view has no results.,!7567Issue #3153723 by quietone, Hardik_Patel_12: Change the scaffolding...,!7565Issue #3153723 by quietone, Hardik_Patel_12: Change the scaffolding...,!7509Change label "Block description" to "Block type",!7344Issue #3292350 by O'Briat, KlemenDEV, hswong3i, smustgrave, quietone: Update...,!6922Issue #3412959 by quietone, smustgrave, longwave: Fix 12 'un' words,!6848Issue #3417553 by longwave: Remove withConsecutive() in CacheCollectorTest,!6720Revert "Issue #3358581 by pfrenssen, _tarik_, a.dmitriiev, smustgrave:...
Pipeline #91988 passed with warnings
Pipeline: drupal

#91994

    ......@@ -71,7 +71,7 @@ window.Drupal = { behaviors: {}, locale: {} };
    *
    * @callback Drupal~behaviorAttach
    *
    * @param {HTMLDocument|HTMLElement} context
    * @param {Document|HTMLElement} context
    * An element to detach behaviors from.
    * @param {?object} settings
    * An object containing settings for the current context. It is rarely used.
    ......@@ -84,7 +84,7 @@ window.Drupal = { behaviors: {}, locale: {} };
    *
    * @callback Drupal~behaviorDetach
    *
    * @param {HTMLDocument|HTMLElement} context
    * @param {Document|HTMLElement} context
    * An element to attach behaviors to.
    * @param {object} settings
    * An object containing settings for the current context.
    ......@@ -143,7 +143,7 @@ window.Drupal = { behaviors: {}, locale: {} };
    * }
    * };
    *
    * @param {HTMLDocument|HTMLElement} [context=document]
    * @param {Document|HTMLElement} [context=document]
    * An element to attach behaviors to.
    * @param {object} [settings=drupalSettings]
    * An object containing settings for the current context. If none is given,
    ......@@ -183,7 +183,7 @@ window.Drupal = { behaviors: {}, locale: {} };
    * implementation, i.e. `once.remove('behaviorName', selector, context)`,
    * to ensure the behavior is detached only from previously processed elements.
    *
    * @param {HTMLDocument|HTMLElement} [context=document]
    * @param {Document|HTMLElement} [context=document]
    * An element to detach behaviors from.
    * @param {object} [settings=drupalSettings]
    * An object containing settings for the current context. If none given,
    ......
    ......@@ -24,7 +24,7 @@
    /**
    * Create a summary for checkboxes in the provided context.
    *
    * @param {HTMLDocument|HTMLElement} context
    * @param {Document|HTMLElement} context
    * A context where one would find checkboxes to summarize.
    *
    * @return {string}
    ......
    0% Loading or .
    You are about to add 0 people to the discussion. Proceed with caution.
    Please register or to comment