jsdoc: Revert unrequired change.

This commit is contained in:
Jürg Lehni 2011-06-08 13:56:48 +01:00
parent 31bef3ea14
commit 39380b4c87

View file

@ -143,7 +143,7 @@ Link.prototype._makeSymbolLink = function(alias, parameters) {
// it's a symbol in another file
if (!linkTo.is("CONSTRUCTOR") && !linkTo.isNamespace) { // it's a method or property
linkPath= (Link.filemap) ? Link.filemap[linkTo.memberOf] :
escape(linkTo.memberOf) || "global";
escape(linkTo.memberOf) || "_global_";
linkPath += publish.conf.ext + "#" + Link.symbolNameToLinkName(linkTo).toLowerCase();
if (parameters) {
linkPath += '-' + parameters.replace(/[()]+/g, '').split(', ').join('-').toLowerCase();