augments Editor.prototype

This commit is contained in:
Matthew Kastor 2013-04-04 20:12:38 -04:00 committed by nightwing
commit d531866663

View file

@ -53,6 +53,7 @@
define(function(require, exports, module) {
"use strict";
var Editor = require("ace/editor").Editor;
/**
* Generates a menu which displays the keyboard shortcuts.
* @author <a href="mailto:matthewkastor@gmail.com">
@ -78,4 +79,7 @@ define(function(require, exports, module) {
overlayPage(editor, el, '0', '0', '0', null);
}
};
Editor.prototype.showKeyboardShortcuts = function () {
module.exports.showKeyboardShortcuts(this);
};
});