silverlight_attach.js 907 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. Copyright (c) 2004-2012, The Dojo Foundation All Rights Reserved.
  3. Available via Academic Free License >= 2.1 OR the modified BSD license.
  4. see: http://dojotoolkit.org/license for details
  5. */
  6. if(!dojo._hasResource["dojox.gfx.silverlight_attach"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
  7. dojo._hasResource["dojox.gfx.silverlight_attach"] = true;
  8. dojo.provide("dojox.gfx.silverlight_attach");
  9. dojo.require("dojox.gfx.silverlight");
  10. dojo.experimental("dojox.gfx.silverlight_attach");
  11. (function(){
  12. var g = dojox.gfx, sl = g.silverlight;
  13. sl.attachNode = function(node){
  14. // summary: creates a shape from a Node
  15. // node: Node: an Silverlight node
  16. return null; // not implemented
  17. };
  18. sl.attachSurface = function(node){
  19. // summary: creates a surface from a Node
  20. // node: Node: an Silverlight node
  21. return null; // dojox.gfx.Surface
  22. };
  23. })();
  24. }