X-Git-Url: http://git.pond.sub.org/?p=eow;a=blobdiff_plain;f=static%2Fdojo-release-1.1.1%2Fdijit%2Flayout%2FLinkPane.js;fp=static%2Fdojo-release-1.1.1%2Fdijit%2Flayout%2FLinkPane.js;h=0000000000000000000000000000000000000000;hp=cddaaee78cf9084ae4def0f5f72a4289cfe7410d;hb=7beca26e6ea91745cd397ad69ac6e26bb934e683;hpb=bed7f6f60f166f71b2e3a98bb8d1e67c3e501909 diff --git a/static/dojo-release-1.1.1/dijit/layout/LinkPane.js b/static/dojo-release-1.1.1/dijit/layout/LinkPane.js deleted file mode 100644 index cddaaee..0000000 --- a/static/dojo-release-1.1.1/dijit/layout/LinkPane.js +++ /dev/null @@ -1,36 +0,0 @@ -if(!dojo._hasResource["dijit.layout.LinkPane"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code. -dojo._hasResource["dijit.layout.LinkPane"] = true; -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 that loads data remotely - // description: - // LinkPane is just a ContentPane that loads data remotely (via the href attribute), - // and has markup similar 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: '
', - - postCreate: 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("postCreate",arguments); - } -}); - -}