backend: cleaned console.logs

This commit is contained in:
muerwre 2018-11-30 15:16:46 +07:00
parent c92f84c24f
commit 723ab51eef
5 changed files with 0 additions and 9 deletions

View file

@ -65,7 +65,6 @@ export class Router {
};
//
lockPropagations = () => {
console.log('lock');
window.addEventListener('mouseup', this.unlockPropagations);
this.lockMapClicks(true);
};

View file

@ -99,7 +99,6 @@ export class Sticker {
};
estimateAngle = e => {
console.log('est');
const { x, y } = this.element.getBoundingClientRect();
const { pageX, pageY } = e;
this.angle = Math.atan2((y - pageY), (x - pageX));