Merge pull request #1008 from juanjoDiaz/remove_unnecesary_base64_dependency

Remove unnecessary base64 dependency
This commit is contained in:
Solly Ross 2018-01-30 13:41:28 -05:00 committed by GitHub
commit ca0644b252
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View File

@ -18,7 +18,6 @@ import Display from "./display.js";
import Keyboard from "./input/keyboard.js"; import Keyboard from "./input/keyboard.js";
import Mouse from "./input/mouse.js"; import Mouse from "./input/mouse.js";
import Websock from "./websock.js"; import Websock from "./websock.js";
import Base64 from "./base64.js";
import DES from "./des.js"; import DES from "./des.js";
import KeyTable from "./input/keysym.js"; import KeyTable from "./input/keysym.js";
import XtScancode from "./input/xtscancodes.js"; import XtScancode from "./input/xtscancodes.js";

View File

@ -10,8 +10,6 @@
* Cross-browser event and position routines * Cross-browser event and position routines
*/ */
import * as Log from './logging.js';
export function getPointerEvent (e) { export function getPointerEvent (e) {
return e.changedTouches ? e.changedTouches[0] : e.touches ? e.touches[0] : e; return e.changedTouches ? e.changedTouches[0] : e.touches ? e.touches[0] : e;
}; };