comparison viewer/js/library.js @ 12:29d39f0e7ee7 draft

add viewer
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Fri, 21 Sep 2012 17:38:22 +0900
parents
children
comparison
equal deleted inserted replaced
11:899900981cf8 12:29d39f0e7ee7
1 function loadFile(file) {
2 var http=new XMLHttpRequest();
3 http.open("GET",file,false);
4 http.send();
5 return http.responseText;
6 }
7
8
9
10
11
12
13
14
15