Subversion Repositories Applications.papyrus

Rev

Rev 1372 | Go to most recent revision | 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.Toggler");
14
dojo.require("dojo.widget.*");
15
dojo.require("dojo.event.*");
16
dojo.widget.defineWidget("dojo.widget.Toggler", dojo.widget.HtmlWidget, {targetId:"", fillInTemplate:function () {
17
	dojo.event.connect(this.domNode, "onclick", this, "onClick");
18
}, onClick:function () {
19
	var pane = dojo.widget.byId(this.targetId);
20
	if (!pane) {
21
		return;
22
	}
23
	pane.explodeSrc = this.domNode;
24
	pane.toggleShowing();
25
}});
26