Commit 45ff666d authored by Guylian Cox's avatar Guylian Cox

remove debug

parent 58c27e3d
...@@ -52,7 +52,6 @@ function isScrollable(element: Element, direction: number) { ...@@ -52,7 +52,6 @@ function isScrollable(element: Element, direction: number) {
* @returns {!boolean} Whether the element or one of its ancestors is scrollable. * @returns {!boolean} Whether the element or one of its ancestors is scrollable.
*/ */
export function isTreeScrollable(element: Element, dir: number): boolean { export function isTreeScrollable(element: Element, dir: number): boolean {
console.log(isScrollable(element, dir), element);
if (isScrollable(element, dir)) { if (isScrollable(element, dir)) {
return true; return true;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment