forked from 0x2620/pandora
remedy for strange bitrot in api dialog
This commit is contained in:
parent
91cb09006a
commit
d3c19e0db9
1 changed files with 11 additions and 13 deletions
|
@ -157,10 +157,8 @@ pandora.ui.apiDialog = function() {
|
|||
);
|
||||
parts = $doc.html().split('<b>see</b>' + colon + whitespace);
|
||||
if (parts.length == 2) {
|
||||
parts[1] = parts[1]
|
||||
.split(comma + linebreak)
|
||||
.map(function(part) {
|
||||
return part
|
||||
parts_ = parts[1].split('<b>source</b>' + colon + whitespace);
|
||||
parts_[0] = parts_[0]
|
||||
.split(comma + whitespace)
|
||||
.map(function(action) {
|
||||
action = Ox.stripTags(action);
|
||||
|
@ -168,9 +166,9 @@ pandora.ui.apiDialog = function() {
|
|||
+ action + '">' + action + '</a></span>';
|
||||
})
|
||||
.join(comma + whitespace);
|
||||
|
||||
})
|
||||
.join(comma + linebreak);
|
||||
parts[1] = parts_.join(
|
||||
linebreak + linebreak + '<b>source</b>' + colon + whitespace
|
||||
);
|
||||
$doc.html(parts.join('<b>see</b>' + colon + whitespace));
|
||||
}
|
||||
pandora.createLinks($doc);
|
||||
|
|
Loading…
Reference in a new issue