Fix focus/clipboard related to mouse/keyboard refactor.

This commit is contained in:
Joel Martin
2011-04-03 17:51:47 -05:00
parent d3796c149e
commit d1bd5ec7d4
3 changed files with 13 additions and 7 deletions

View File

@@ -165,6 +165,13 @@ that.set_local_cursor = function(cursor) {
that.get_canvas = function() {
return canvas;
};
that.get_keyboard = function() {
return keyboard;
};
that.get_mouse = function() {
return mouse;
};