diff --git a/js/checkbox.js b/js/checkbox.js index 739d3fa..18f18d5 100755 --- a/js/checkbox.js +++ b/js/checkbox.js @@ -14,11 +14,4 @@ ''; })(Drupal); -jQuery( window ).on( "load", function() { - console.log( "window loaded" ); - //jQuery(".mirador80").remove(); - //jQuery(".mirador104").click(); -// jQuery('.mirador104 button.MuiButtonBase-root.MuiIconButton-root').trigger('click'); - -}); diff --git a/junk_drawer/tests/src/Functional/Update/OlivesimaginedPostUpdateTest.php b/junk_drawer/tests/src/Functional/Update/OlivesimaginedPostUpdateTest.php deleted file mode 100755 index b93b039..0000000 --- a/junk_drawer/tests/src/Functional/Update/OlivesimaginedPostUpdateTest.php +++ /dev/null @@ -1,42 +0,0 @@ -databaseDumpFiles = [ - __DIR__ . '/../../../../../../modules/system/tests/fixtures/update/drupal-9.4.0.filled.standard.php.gz', - ]; - } - - /** - * Tests update hook setting base primary color. - */ - public function testOlivesimaginedPrimaryColorUpdate() { - $config = $this->config('olivesimagined.settings'); - $this->assertEmpty($config->get('base_primary_color')); - - // Run updates. - $this->runUpdates(); - - $config = $this->config('olivesimagined.settings'); - $this->assertSame('#1b9ae4', $config->get('base_primary_color')); - } - -} diff --git a/junk_drawer/tests/src/Unit/OlivesimaginedHexToHslTest.php b/junk_drawer/tests/src/Unit/OlivesimaginedHexToHslTest.php deleted file mode 100755 index 71014f7..0000000 --- a/junk_drawer/tests/src/Unit/OlivesimaginedHexToHslTest.php +++ /dev/null @@ -1,52 +0,0 @@ - ['#1b9ae4', [202, 79, 50]], - 'Firehouse' => ['#a30f0f', [0, 83, 35]], - 'Ice' => ['#57919e', [191, 29, 48]], - 'Plum' => ['#7a4587', [288, 32, 40]], - 'Slate' => ['#47625b', [164, 16, 33]], - ]; - } - -}