replace .content with main

This commit is contained in:
Adam Bradley
2013-08-24 21:09:20 -05:00
11 changed files with 130 additions and 114 deletions

View File

@ -0,0 +1,17 @@
'use strict';
(function(window, document, framework) {
var x;
function collectTemplates() {
for(x=0; x<document.elements.length; x++) {
}
}
framework.on("ready", function(){
framework.collectTemplates();
});
})(this, document, this.FM = this.FM || {});