Skip to content
Snippets Groups Projects

Issue #3238915: Refactor (if feasible) uses of the jQuery ready function to use VanillaJS

Closed Issue #3238915: Refactor (if feasible) uses of the jQuery ready function to use VanillaJS
Closed Harumi Jang requested to merge issue/drupal-3238915:3238915-refactor-if-feasible into 9.3.x
1 file
+ 3
1
Compare changes
  • Side-by-side
  • Inline
  • 3a2115b6
    Issue #3259142 by longwave, murilohp: PHPStan commit check fails if a file is deleted · 3a2115b6
    catch authored
@@ -125,7 +125,9 @@
@@ -125,7 +125,9 @@
# Build up a list of absolute file names.
# Build up a list of absolute file names.
ABS_FILES=
ABS_FILES=
for FILE in $FILES; do
for FILE in $FILES; do
ABS_FILES="$ABS_FILES $TOP_LEVEL/$FILE"
if [ -f "$TOP_LEVEL/$FILE" ]; then
 
ABS_FILES="$ABS_FILES $TOP_LEVEL/$FILE"
 
fi
if [[ $FILE == "core/phpcs.xml.dist" ]]; then
if [[ $FILE == "core/phpcs.xml.dist" ]]; then
PHPCS_XML_DIST_FILE_CHANGED=1;
PHPCS_XML_DIST_FILE_CHANGED=1;
Loading