bringing the Scratch html5 project under test

This commit is contained in:
Brian Pilati 2014-02-19 20:11:08 -07:00
parent 5f6195177a
commit 051e1e4778
12 changed files with 340 additions and 25 deletions

View file

@ -23,7 +23,7 @@
'use strict';
var runtime, interp, io, iosAudioActive = false;
$(function() {
function Scratch(project_id) {
runtime = new Runtime();
runtime.init();
@ -151,4 +151,4 @@ $(function() {
// Load the requested project and go!
io = new IO();
io.loadProject(project_id);
});
};