mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
16 lines
304 B
JavaScript
16 lines
304 B
JavaScript
var menu, MenuIO;
|
|
|
|
(function() {
|
|
'use strict';
|
|
|
|
var element = document.querySelector('#js-menu-container'),
|
|
options = {
|
|
icon: true
|
|
};
|
|
|
|
menu = MenuIO(element, options, {
|
|
'help': function() {
|
|
console.log('*help');
|
|
}
|
|
});
|
|
})();
|