Rev | Line | |
---|
[483] | 1 | define(["dojo/_base/kernel", "dojo/_base/lang", "./_base", "./silverlight"], |
---|
| 2 | function(kernel, lang, g, sl){ |
---|
| 3 | lang.getObject("dojox.gfx.silverlight_attach", true); |
---|
| 4 | kernel.experimental("dojox.gfx.silverlight_attach"); |
---|
| 5 | |
---|
| 6 | sl.attachNode = function(node){ |
---|
| 7 | // summary: |
---|
| 8 | // creates a shape from a Node |
---|
| 9 | // node: Node |
---|
| 10 | // a Silverlight node |
---|
| 11 | return null; // not implemented |
---|
| 12 | }; |
---|
| 13 | |
---|
| 14 | sl.attachSurface = function(node){ |
---|
| 15 | // summary: |
---|
| 16 | // creates a surface from a Node |
---|
| 17 | // node: Node |
---|
| 18 | // a Silverlight node |
---|
| 19 | return null; // dojox/gfx.Surface |
---|
| 20 | }; |
---|
| 21 | |
---|
| 22 | return sl; // return augmented silverlight api |
---|
| 23 | }); |
---|
Note: See
TracBrowser
for help on using the repository browser.