Remove console log

This commit is contained in:
DanielApt 2016-02-22 22:41:11 +00:00
parent 9996b1c8e3
commit dc951a3804

View File

@ -58,7 +58,6 @@ function bindMouseWheelHandler(element, i) {
function shouldBeConsumedByChild(deltaX, deltaY) {
var child = element.querySelector('textarea:hover, .ps-child:hover');
if (child) {
console.log(child);
if (child.tagName !== 'TEXTAREA' && !window.getComputedStyle(child).overflow.match(/(scroll|auto)/)) {
return false;
}