forked from FoundKeyGang/FoundKey
Compare commits
3 commits
bffd15daed
...
c1762f27ae
Author | SHA1 | Date | |
---|---|---|---|
c1762f27ae | |||
08f75a01f1 | |||
9302a9faaa |
2 changed files with 5 additions and 5 deletions
|
@ -130,9 +130,9 @@ const previewable = (file: foundkey.entities.DriveFile): boolean => {
|
||||||
};
|
};
|
||||||
|
|
||||||
const isModule = (file: foundkey.entities.DriveFile): boolean => {
|
const isModule = (file: foundkey.entities.DriveFile): boolean => {
|
||||||
return FILE_EXT_TRACKER_MODULES.filter((ext) => {
|
return FILE_EXT_TRACKER_MODULES.some((ext) => {
|
||||||
return file.name.toLowerCase().endsWith("." + ext);
|
return file.name.toLowerCase().endsWith("." + ext);
|
||||||
}).length > 0;
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -11,11 +11,11 @@
|
||||||
<canvas class="pattern-canvas" ref="displayCanvas"></canvas>
|
<canvas class="pattern-canvas" ref="displayCanvas"></canvas>
|
||||||
</div>
|
</div>
|
||||||
<div class="controls">
|
<div class="controls">
|
||||||
<button class="play" accesskey="P" @click="playPause()">
|
<button class="play" @click="playPause()">
|
||||||
<i class="fas fa-play" v-if="!playing"></i>
|
|
||||||
<i class="fas fa-pause" v-if="playing"></i>
|
<i class="fas fa-pause" v-if="playing"></i>
|
||||||
|
<i class="fas fa-play" v-else></i>
|
||||||
</button>
|
</button>
|
||||||
<button class="stop" accesskey="X" @click="stop()">
|
<button class="stop" @click="stop()">
|
||||||
<i class="fas fa-stop"></i>
|
<i class="fas fa-stop"></i>
|
||||||
</button>
|
</button>
|
||||||
<progress min="0" max="100" value="0" ref="progress"></progress>
|
<progress min="0" max="100" value="0" ref="progress"></progress>
|
||||||
|
|
Loading…
Reference in a new issue