forked from 0x2620/pandora
wiki pages can have / in title
This commit is contained in:
parent
31d28e733d
commit
e651aa6992
1 changed files with 1 additions and 1 deletions
|
@ -259,7 +259,7 @@ pandora.ui.infoView = function(data) {
|
||||||
.append(formatKey('wiki'))
|
.append(formatKey('wiki'))
|
||||||
.append(
|
.append(
|
||||||
'<a href="' + data.wiki + '">'
|
'<a href="' + data.wiki + '">'
|
||||||
+ decodeURI(data.wiki.split('/').pop()) + '</a>'
|
+ decodeURI(data.wiki.split('wiki/').pop()) + '</a>'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
$links.appendTo($text);
|
$links.appendTo($text);
|
||||||
|
|
Loading…
Reference in a new issue