Compare commits

..

No commits in common. "fed3c8882a799501cb2541332052d6a46eff2281" and "6ae6c20e4f49e7c755fcd7efd3b9adbb85c4c145" have entirely different histories.

2 changed files with 0 additions and 19 deletions

View file

@ -1,12 +0,0 @@
<component name="ProjectRunConfigurationManager">
<configuration default="false" name="dev" type="js.build_tools.npm" nameIsGenerated="true">
<package-json value="$PROJECT_DIR$/package.json" />
<command value="run" />
<scripts>
<script value="dev" />
</scripts>
<node-interpreter value="project" />
<envs />
<method v="2" />
</configuration>
</component>

View file

@ -4,7 +4,6 @@
import Axes from '$lib/Axes.svelte';
import ColorGradient from '$lib/ColorGradient.svelte';
import BrightnessGradient from '$lib/BrightnessGradient.svelte';
import { onMount } from 'svelte';
let sizes = {
blockSize: 64,
@ -20,12 +19,6 @@
$: circleBlocks =
2 * Math.floor((Math.min(sizes.horizontalCount, sizes.verticalCount) * 0.66) / 2) +
(sizes.horizontalCount % 2);
onMount(() => {
window.addEventListener('dblclick', () => {
document.body.requestFullscreen();
})
});
</script>
<div