Changeset 13698
- Timestamp:
- 05/13/12 14:28:09 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/FACT++/www/smartfact/index.js
r13686 r13698 217 217 { 218 218 var xmlPage = new XMLHttpRequest(); 219 xmlPage.open('POST', name+'.table', true);219 xmlPage.open('POST', "struct/"+name+'.table', true); 220 220 xmlPage.onload = function () 221 221 { … … 234 234 //slideOut(name, xmlHttp.responseText); 235 235 //displayPage(name, xmlHttp.responseText); 236 236 //onresize(true); 237 237 }; 238 238 … … 801 801 802 802 var xmlText = new XMLHttpRequest(); 803 xmlText.open('POST', fname+'.txt', true);803 xmlText.open('POST', "data/"+fname+'.txt', true); 804 804 xmlText.onload = function () 805 805 { … … 919 919 var cols = tokens[line].split('\t'); 920 920 for (var col=1; col<cols.length; col++) 921 form = form.replace("\$"+(col-1), cols[col].length==0 ? " --" : cols[col]);921 form = form.replace("\$"+(col-1), cols[col].length==0 ? "—" : cols[col]); 922 922 923 923 if (cols.length<=1) 924 form = " ---";924 form = "—"; 925 925 926 926 var newe = document.createElement("div"); … … 952 952 953 953 var xmlGfx = new XMLHttpRequest(); 954 xmlGfx.open('POST', fname, true);954 xmlGfx.open('POST', "data/"+fname, true); 955 955 xmlGfx.onload = function() 956 956 {
Note:
See TracChangeset
for help on using the changeset viewer.