Explorar el Código

Entry point to application.

dev-tmpl
Bryan Miller hace 6 años
padre
commit
db2e02d303
Se han modificado 1 ficheros con 17 adiciones y 0 borrados
  1. +17
    -0
      app/js/main.js

+ 17
- 0
app/js/main.js Ver fichero

@@ -0,0 +1,17 @@


function initialize(DOC){
console.log(DOC);
var canvas = DOC.getElementByID("painter");
if (!canvas){
throw new Exception("DOM Missing painter canvas.");
}
var ctx = canvas.getContext("2d");
if (!ctx){
throw new Exception("Failed to obtain canvas context.");
}
}


//console.log(document.getElementByID("painter"));
//initialize(document);

Cargando…
Cancelar
Guardar