source: Dev/branches/rest-dojo-ui/client/dojox/gfx/silverlight_attach.js @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

File size: 584 bytes
Line 
1define(["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: creates a shape from a Node
8                // node: Node: an Silverlight node
9                return null;    // not implemented
10        };
11
12        sl.attachSurface = function(node){
13                // summary: creates a surface from a Node
14                // node: Node: an Silverlight node
15                return null;    // dojox.gfx.Surface
16        };
17       
18        return sl; // return augmented silverlight api
19});
Note: See TracBrowser for help on using the repository browser.