a:9:{s:9:"#provides";s:21:"dijit.layout.LinkPane";s:9:"#resource";s:18:"layout/LinkPane.js";s:9:"#requires";a:2:{i:0;a:2:{i:0;s:6:"common";i:1;s:24:"dijit.layout.ContentPane";}i:1;a:2:{i:0;s:6:"common";i:1;s:16:"dijit._Templated";}}s:21:"dijit.layout.LinkPane";a:6:{s:4:"type";s:8:"Function";s:6:"chains";a:2:{s:9:"prototype";a:1:{i:0;s:24:"dijit.layout.ContentPane";}s:4:"call";a:2:{i:0;s:24:"dijit.layout.ContentPane";i:1;s:16:"dijit._Templated";}}s:6:"mixins";a:1:{s:9:"prototype";a:1:{i:0;s:26:"dijit._Templated.prototype";}}s:7:"summary";s:128:"A ContentPane with an href where (when declared in markup)
the title is specified as innerHTML rather than as a title attribute.";s:11:"description";s:218:"LinkPane is just a ContentPane that is declared in markup similarly
to an anchor. The anchor's body (the words between `` and ``)
become the title of the widget (used for TabContainer, AccordionContainer, etc.)";s:9:"classlike";b:1;}s:36:"dijit.layout.LinkPane.templateString";a:2:{s:9:"prototype";s:21:"dijit.layout.LinkPane";s:7:"summary";s:0:"";}s:41:"dijit.layout.LinkPane.postMixInProperties";a:4:{s:9:"prototype";s:21:"dijit.layout.LinkPane";s:4:"type";s:8:"Function";s:6:"source";s:1163:"dojo.provide("dijit.layout.LinkPane");
dojo.require("dijit.layout.ContentPane");
dojo.require("dijit._Templated");
dojo.declare("dijit.layout.LinkPane",
[dijit.layout.ContentPane, dijit._Templated],
{
// summary:
// A ContentPane with an href where (when declared in markup)
// the title is specified as innerHTML rather than as a title attribute.
// description:
// LinkPane is just a ContentPane that is declared in markup similarly
// to an anchor. The anchor's body (the words between `` and ``)
// become the title of the widget (used for TabContainer, AccordionContainer, etc.)
// example:
// | my title
// I'm using a template because the user may specify the input as
// title, in which case we need to get rid of the
// because we don't want a link.
templateString: '',
postMixInProperties: function(){
// If user has specified node contents, they become the title
// (the link must be plain text)
if(this.srcNodeRef){
this.title += this.srcNodeRef.innerHTML;
}
this.inherited(arguments);";s:7:"summary";s:0:"";}s:34:"dijit.layout.LinkPane._fillContent";a:6:{s:9:"prototype";s:21:"dijit.layout.LinkPane";s:4:"type";s:8:"Function";s:10:"parameters";a:1:{s:6:"source";a:1:{s:4:"type";s:7:"DomNode";}}s:6:"source";s:1437:"dojo.provide("dijit.layout.LinkPane");
dojo.require("dijit.layout.ContentPane");
dojo.require("dijit._Templated");
dojo.declare("dijit.layout.LinkPane",
[dijit.layout.ContentPane, dijit._Templated],
{
// summary:
// A ContentPane with an href where (when declared in markup)
// the title is specified as innerHTML rather than as a title attribute.
// description:
// LinkPane is just a ContentPane that is declared in markup similarly
// to an anchor. The anchor's body (the words between `` and ``)
// become the title of the widget (used for TabContainer, AccordionContainer, etc.)
// example:
// | my title
// I'm using a template because the user may specify the input as
// title, in which case we need to get rid of the
// because we don't want a link.
templateString: '',
postMixInProperties: function(){
// If user has specified node contents, they become the title
// (the link must be plain text)
if(this.srcNodeRef){
this.title += this.srcNodeRef.innerHTML;
}
this.inherited(arguments);
},
_fillContent: function(/*DomNode*/ source){
// Overrides _Templated._fillContent().
// _Templated._fillContent() relocates srcNodeRef innerHTML to templated container node,
// but in our case the srcNodeRef innerHTML is the title, so shouldn't be
// copied";s:7:"private";b:1;s:7:"summary";s:0:"";}s:12:"dijit.layout";a:2:{s:4:"type";s:6:"Object";s:7:"summary";s:0:"";}s:5:"dijit";a:2:{s:4:"type";s:6:"Object";s:7:"summary";s:0:"";}}