Changed the way how application is composed

This commit is contained in:
Borys Levytskyi
2015-04-04 15:25:51 +03:00
parent d6e6f39688
commit 00a441d631
9 changed files with 292 additions and 189 deletions

View File

@@ -22,6 +22,10 @@
htmlElement: function(obj) {
return obj instanceof HtmlElement;
},
array: function(obj) {
return obj instanceof Array;
}
};
})();