Skip to content

Commit

Permalink
Merge pull request novnc#1008 from juanjoDiaz/remove_unnecesary_base6…
Browse files Browse the repository at this point in the history
…4_dependency

Remove unnecessary base64 dependency
  • Loading branch information
DirectXMan12 authored Jan 30, 2018
2 parents be85805 + 24c99fb commit ca0644b
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion core/rfb.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ import Display from "./display.js";
import Keyboard from "./input/keyboard.js";
import Mouse from "./input/mouse.js";
import Websock from "./websock.js";
import Base64 from "./base64.js";
import DES from "./des.js";
import KeyTable from "./input/keysym.js";
import XtScancode from "./input/xtscancodes.js";
Expand Down
2 changes: 0 additions & 2 deletions core/util/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@
* Cross-browser event and position routines
*/

import * as Log from './logging.js';

export function getPointerEvent (e) {
return e.changedTouches ? e.changedTouches[0] : e.touches ? e.touches[0] : e;
};
Expand Down

0 comments on commit ca0644b

Please sign in to comment.