Skip to content

Commit

Permalink
remove console log
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasz75 committed Feb 17, 2021
1 parent f74afe9 commit 5a7db4e
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions app/scripts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,6 @@
parentDiv.on('mouseleave', function(e){
if (!_options.readonly){
if(e.buttons == 1 || e.buttons == 3){
console.log("clear on parentDiv" + parentDiv);
gMultiSelectToogleBlockId = null;
}
}
Expand All @@ -329,7 +328,6 @@
if(e.buttons == 1 || e.buttons == 3){
var blockSelector = $(this).attr('data-block');
if (!blockSelector){
console.log("clear on empty block" + blockSelector);
// clear selected block when entering empty block
gMultiSelectToogleBlockId = null;
}
Expand Down Expand Up @@ -375,7 +373,6 @@
if (!_options.readonly){
if(e.buttons == 1 || e.buttons == 3){
if (gMultiSelectToogleBlockId !== blockSelector){
console.log("blockSelector " + blockSelector);
gMultiSelectToogleBlockId = blockSelector;
_togglePlan(blockSelector);
$('html').addClass('multiSelectMode');
Expand Down

0 comments on commit 5a7db4e

Please sign in to comment.