dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
12 lines (9 loc) • 325 B
JavaScript
define(["dojo/_base/lang", "dojo/_base/kernel","dojox/gfx/canvas"], function(lang,kernel,canvas){
lang.getObject("dojox.gfx.canvas_attach", true);
kernel.experimental("dojox.gfx.canvas_attach");
// not implemented
canvas.attachSurface = canvas.attachNode = function(){
return null; // for now
};
return canvas;
});