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

Issue #3426514 by magaki, Tom Konda, longwave: Drupal.theme.progressBar() does...

Issue #3426514 by magaki, Tom Konda, longwave: Drupal.theme.progressBar() does not escape output correctly

(cherry picked from commit 1c9e2cff)
parent 0ebaa775
No related branches found
No related tags found
6 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...
Pipeline #139333 passed with warnings
Pipeline: drupal

#139381

    Pipeline: drupal

    #139379

      Pipeline: drupal

      #139377

        +7
        ......@@ -14,8 +14,9 @@
        * The HTML for the progress bar.
        */
        Drupal.theme.progressBar = function (id) {
        const escapedId = Drupal.checkPlain(id);
        return (
        `<div id="${id}" class="progress" aria-live="polite">` +
        `<div id="${escapedId}" class="progress" aria-live="polite">` +
        '<div class="progress__label">&nbsp;</div>' +
        '<div class="progress__track"><div class="progress__bar"></div></div>' +
        '<div class="progress__percentage"></div>' +
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Please register or to comment