diff --git a/index.html b/index.html index ac73d7f..cad7b95 100644 --- a/index.html +++ b/index.html @@ -17,7 +17,7 @@ - + diff --git a/js/core/util.js b/js/core/util.js index 6cc03ea..d802a64 100755 --- a/js/core/util.js +++ b/js/core/util.js @@ -15,10 +15,8 @@ /*global define, require */ define([ - "jquery", "modular" ], function ( - $, modular ) { "use strict"; diff --git a/js/demo.js b/js/demo.js index b0dc373..e0906d9 100644 --- a/js/demo.js +++ b/js/demo.js @@ -1,11 +1,8 @@ require([ - "jquery" - , "js/core/classes/emulator" + "js/core/classes/emulator" , "js/plugins/std.canvas.vga" , "js/plugins/std.keyboard" - ], function ( - $ - , jemul8 + ], function (jemul8 , canvasVGAPlugin , keyboardPlugin ) { "use strict"; diff --git a/js/plugins/std.keyboard.js b/js/plugins/std.keyboard.js index bae9bca..0ea4dba 100755 --- a/js/plugins/std.keyboard.js +++ b/js/plugins/std.keyboard.js @@ -15,11 +15,9 @@ /*global define, require */ define([ - "jquery", "../core/util", "../core/classes/iodev/keyboard/scancode" ], function ( - $, util, Scancode ) {