mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
18 lines
289 B
JavaScript
18 lines
289 B
JavaScript
'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 || {});
|