Skip to content

Commit 60871ca

Browse files
remove console logs (#297)
1 parent e827160 commit 60871ca

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

lib/ruby_ui/command/command_controller.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ export default class extends Controller {
3434
// allow scroll on body
3535
document.body.classList.remove("overflow-hidden");
3636
// remove the element
37-
console.log("this.element", this.element);
3837
this.element.remove();
3938
}
4039

lib/ruby_ui/tooltip/tooltip_controller.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,6 @@ export default class extends Controller {
2323
}
2424

2525
setFloatingElement() {
26-
console.log(this.placementValue);
27-
2826
this.cleanup = autoUpdate(this.triggerTarget, this.contentTarget, () => {
2927
computePosition(this.triggerTarget, this.contentTarget, { placement: this.placementValue, middleware: [offset(4)] }).then(({ x, y }) => {
3028
Object.assign(this.contentTarget.style, {

0 commit comments

Comments
 (0)