Example #1
0
	exports.load = function load() {
		console.log("Loading View "+extensionID);
        TSCORE.IO.createDirectoryTree(TSCORE.currentPath);		
	};
Example #2
0
 .click(function() {
     graphMode = "bilevelPartition";
     TSCORE.showLoadingAnimation();                     
     TSCORE.IO.createDirectoryTree(TSCORE.currentPath);
 })          
Example #3
0
 $("#" + extensionID + "ActivateBilevelPartitionButton").click(function() {
   graphMode = "bilevelPartition";
   TSCORE.showLoadingAnimation();
   TSCORE.IO.createDirectoryTree(TSCORE.currentPath);
 });
Example #4
0
 .click(function() {
     graphMode = "treeMap2";
     TSCORE.showLoadingAnimation();                     
     TSCORE.IO.createDirectoryTree(TSCORE.currentPath);
 })          
Example #5
0
 $("#" + extensionID + "ActivateTreeMapNaviButton").click(function() {
   graphMode = "treeMap2";
   TSCORE.showLoadingAnimation();
   TSCORE.IO.createDirectoryTree(TSCORE.currentPath);
 });