webui-aria2/js/libs/dojox/gfx/silverlight_attach.js.uncompressed.js
2012-05-01 19:52:07 +08:00

21 lines
626 B
JavaScript

//>>built
define("dojox/gfx/silverlight_attach", ["dojo/_base/kernel", "dojo/_base/lang", "./_base", "./silverlight"],
function(kernel, lang, g, sl){
lang.getObject("dojox.gfx.silverlight_attach", true);
kernel.experimental("dojox.gfx.silverlight_attach");
sl.attachNode = function(node){
// summary: creates a shape from a Node
// node: Node: an Silverlight node
return null; // not implemented
};
sl.attachSurface = function(node){
// summary: creates a surface from a Node
// node: Node: an Silverlight node
return null; // dojox.gfx.Surface
};
return sl; // return augmented silverlight api
});