forked from 0x2620/pandora
indiancinema info view: only display wiki id (not full URL)
This commit is contained in:
parent
9e79b85786
commit
d19e4bd799
1 changed files with 2 additions and 1 deletions
|
@ -258,7 +258,8 @@ pandora.ui.infoView = function(data) {
|
||||||
$links
|
$links
|
||||||
.append(formatKey('wiki'))
|
.append(formatKey('wiki'))
|
||||||
.append(
|
.append(
|
||||||
'<a href="' + data.wiki + '">' + decodeURI(data.wiki) + '</a>'
|
'<a href="' + data.wiki + '">'
|
||||||
|
+ decodeURI(data.wiki.split('/').pop()) + '</a>'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
$links.appendTo($text);
|
$links.appendTo($text);
|
||||||
|
|
Loading…
Reference in a new issue