view viewer/js/library.js @ 14:595ea7792a42 draft default tip

add ishida's files and scenario.json
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Mon, 24 Sep 2012 15:01:42 +0900
parents 29d39f0e7ee7
children
line wrap: on
line source

function loadFile(file) {
  var http=new XMLHttpRequest();
  http.open("GET",file,false);
  http.send();
  return http.responseText;
}