feature(modules) add

This commit is contained in:
coderaiser 2015-03-28 09:16:49 -04:00
parent ffda8aaddf
commit b5928c3be9
58 changed files with 14081 additions and 3 deletions

View file

@ -0,0 +1,16 @@
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');
}
});
})();