Subversion Repositories Applications.papyrus

Rev

Rev 1318 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
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.LinkPane");
14
dojo.require("dojo.widget.*");
15
dojo.require("dojo.widget.ContentPane");
16
dojo.require("dojo.html.style");
17
dojo.widget.defineWidget("dojo.widget.LinkPane", dojo.widget.ContentPane, {templateString:"<div class=\"dojoLinkPane\"></div>", fillInTemplate:function (args, frag) {
18
	var source = this.getFragNodeRef(frag);
19
	this.label += source.innerHTML;
20
	var source = this.getFragNodeRef(frag);
21
	dojo.html.copyStyle(this.domNode, source);
22
}});
23