Skip to content
This repository was archived by the owner on Nov 20, 2022. It is now read-only.

Commit 08c6020

Browse files
author
ipatate
committed
remove debug echo :(
1 parent 1e20c75 commit 08c6020

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

inc/assets.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,13 @@ function addScript()
5757
$sc[] = $f;
5858
// main legacy after polyfill if already in $sc
5959
} else if (strpos($file, 'legacy') !== false && strpos($file, 'polyfills') === false && $legacyIsIn === true) {
60-
echo 'legacy';
6160
// split array into two parts
6261
$split1 = array_slice($sc, 0, 1, true);
6362
$split2 = array_slice($sc, 1, null, true);
6463
// add new array element at between two parts
6564
$sc = array_merge($split1, [1 => $f], $split2);
6665
// polyfill in first
6766
} else {
68-
echo 'poly';
6967
$legacyIsIn = true;
7068
array_unshift($sc, $f);
7169
}

0 commit comments

Comments
 (0)