Skip to content
Snippets Groups Projects
Commit b8d3ee84 authored by alexisben's avatar alexisben
Browse files

remove console.log

parent 612f4ed4
No related branches found
No related tags found
No related merge requests found
...@@ -60,7 +60,7 @@ class KeyFigures { ...@@ -60,7 +60,7 @@ class KeyFigures {
loop () { loop () {
this.time = Math.min(new Date().getTime() - this.start, OPTIONS.DURATION); this.time = Math.min(new Date().getTime() - this.start, OPTIONS.DURATION);
console.log(this.time)
this.figures.forEach((figure, index) => { this.figures.forEach((figure, index) => {
this.values[index] = this.getValues(this.time, 0, this.targets[index], OPTIONS.DURATION); this.values[index] = this.getValues(this.time, 0, this.targets[index], OPTIONS.DURATION);
figure.innerHTML = this.formatValue(parseFloat(this.values[index], 10)); figure.innerHTML = this.formatValue(parseFloat(this.values[index], 10));
......
...@@ -56,7 +56,6 @@ class Modal { ...@@ -56,7 +56,6 @@ class Modal {
const firstFocusable = focusableInDialog[0]; const firstFocusable = focusableInDialog[0];
const lastFocusable = focusableInDialog.at(-1); const lastFocusable = focusableInDialog.at(-1);
console.log(firstFocusable, lastFocusable)
if (!this.state.isOpened) { if (!this.state.isOpened) {
return; return;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment