added a tabbed_structure test

This commit is contained in:
2015-03-13 15:50:17 -07:00
parent bc178e67ee
commit 1238e7949e
+1
View File
@@ -0,0 +1 @@
template_str="\␍01 MAIN\␍ 02 PComp\␍03 Source Layers\␍04 Movies\␍05 Other Projects\␍06 Audio\␍07 References\␍";var FolderStructure = function(){ var template = template_str.split('\n'); template = template.slice(1,template.length-1); var tab=" "; for(var i = 0; i < template.length; i++){ alert(template[i].split(tab)); this[template[i]]=''; } this.print = function(){ for (var i in this){ } };};fs = new FolderStructure()fs.print();