Skip to content

Commit

Permalink
Fix #948: Removed console log.
Browse files Browse the repository at this point in the history
  • Loading branch information
Steve committed Dec 27, 2024
1 parent 2252d7b commit f796e72
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion renderer/classes/MonthCalendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,6 @@ class MonthCalendar extends BaseCalendar
$('.time-cells').mousewheel(function(e, delta)
{
if(this.children.length > 5) {

Check failure on line 446 in renderer/classes/MonthCalendar.js

View workflow job for this annotation

GitHub Actions / Checking (macos-latest)

Expected space(s) after "if"

Check failure on line 446 in renderer/classes/MonthCalendar.js

View workflow job for this annotation

GitHub Actions / Checking (macos-latest)

Opening curly brace appears on the same line as controlling statement

Check failure on line 446 in renderer/classes/MonthCalendar.js

View workflow job for this annotation

GitHub Actions / Checking (ubuntu-20.04)

Expected space(s) after "if"

Check failure on line 446 in renderer/classes/MonthCalendar.js

View workflow job for this annotation

GitHub Actions / Checking (ubuntu-20.04)

Opening curly brace appears on the same line as controlling statement
console.log("too long!!", this.children.length);
this.scrollLeft -= (delta * 30);
e.preventDefault();
}
Expand Down

0 comments on commit f796e72

Please sign in to comment.