blob: 20c5b516850d2fa8c15b5d9a779b7cf26f893801 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
//>>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
});
|