Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
skarab42 committed Nov 14, 2020
1 parent 31aba12 commit f156c2a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 0 additions & 2 deletions client-src/components/Anime/Timeline/Editor.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@
const playables = ["audio", "video"];
$: console.log(">>>", initialItems);
$items = initialItems;
function updateAnime() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
dispatch("change", { key, value: attrsDefs[key].default });
}
function isRemovable(key) {
// TODO === a faire !!!!
function isRemovable(/*key*/) {
return true;
}
</script>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@
dispatch("change", { key, value: styleDefs[key].default });
}
function isRemovable(key) {
// TODO === a faire !!!!
function isRemovable(/*key*/) {
return true;
}
</script>
Expand Down
1 change: 0 additions & 1 deletion client-src/components/Widgets/Anime/Timeline/Widget.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
on("push", (action) => {
if (action.widgetId === widget.id) {
console.log("push", action.id);
clickCount++;
}
});
Expand Down

0 comments on commit f156c2a

Please sign in to comment.