Added nested rendering, collapsing nodes, uses marionette

This commit is contained in:
2016-01-30 21:00:33 +08:00
parent cf89df815d
commit c17412477d
10 changed files with 264 additions and 171 deletions
+6 -3
View File
@@ -2,13 +2,16 @@ define(
[],
function() {
var constants = {
ENTER_KEY :13
ENTER_KEY :13,
UP_ARROW: 38,
DOWN_ARROW: 40,
TAB: 9,
};
return constants;
});
});