1318 |
alexandre_ |
1 |
/*
|
|
|
2 |
Copyright (c) 2004-2006, The Dojo Foundation
|
|
|
3 |
All Rights Reserved.
|
|
|
4 |
|
|
|
5 |
Licensed under the Academic Free License version 2.1 or above OR the
|
|
|
6 |
modified BSD license. For more information on Dojo licensing, see:
|
|
|
7 |
|
|
|
8 |
http://dojotoolkit.org/community/licensing.shtml
|
|
|
9 |
*/
|
|
|
10 |
|
1422 |
alexandre_ |
11 |
|
|
|
12 |
|
1318 |
alexandre_ |
13 |
dojo.provide("dojo.widget.demoEngine.DemoPane");
|
|
|
14 |
dojo.require("dojo.widget.*");
|
|
|
15 |
dojo.require("dojo.widget.HtmlWidget");
|
|
|
16 |
dojo.widget.defineWidget("my.widget.demoEngine.DemoPane", dojo.widget.HtmlWidget, {templateString:"<div dojoAttachPoint=\"domNode\">\n\t<iframe dojoAttachPoint=\"demoNode\"></iframe>\n</div>\n", templateCssString:".demoPane {\n\twidth: 100%;\n\theight: 100%;\n\tpadding: 0px;\n\tmargin: 0px;\n\toverflow: hidden;\n}\n\n.demoPane iframe {\n\twidth: 100%;\n\theight: 100%;\n\tborder: 0px;\n\tborder: none;\n\toverflow: auto;\n\tpadding: 0px;\n\tmargin:0px;\n\tbackground: #ffffff;\n}\n", templateCssPath:dojo.uri.moduleUri("dojo.widget", "demoEngine/templates/DemoPane.css"), postCreate:function () {
|
|
|
17 |
dojo.html.addClass(this.domNode, this.domNodeClass);
|
|
|
18 |
dojo.debug("PostCreate");
|
|
|
19 |
this._launchDemo();
|
|
|
20 |
}, _launchDemo:function () {
|
|
|
21 |
dojo.debug("Launching Demo");
|
|
|
22 |
dojo.debug(this.demoNode);
|
|
|
23 |
this.demoNode.src = this.href;
|
|
|
24 |
}, setHref:function (url) {
|
|
|
25 |
this.href = url;
|
|
|
26 |
this._launchDemo();
|
|
|
27 |
}}, "", function () {
|
|
|
28 |
dojo.debug("DemoPane Init");
|
|
|
29 |
this.domNodeClass = "demoPane";
|
|
|
30 |
this.demoNode = "";
|
|
|
31 |
this.href = "";
|
|
|
32 |
});
|
|
|
33 |
|