You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
604 B
23 lines
604 B
define(["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 |
|
// a Silverlight node |
|
return null; // not implemented |
|
}; |
|
|
|
sl.attachSurface = function(node){ |
|
// summary: |
|
// creates a surface from a Node |
|
// node: Node |
|
// a Silverlight node |
|
return null; // dojox/gfx.Surface |
|
}; |
|
|
|
return sl; // return augmented silverlight api |
|
});
|
|
|