We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 28f30f7 commit a97f1d0Copy full SHA for a97f1d0
src/templates/pages/reference/index.hbs
@@ -110,9 +110,11 @@ slug: reference/
110
var entry = translations[obj][name];
111
$('.description-text').html('<p>'+entry.description+'</p>');
112
$('.returns').html(entry.returns);
113
- $('.params').find('tr').each(function(i) {
+ $('.params').find('ul').each(function(i) {
114
if (i < entry.params.length) {
115
- $(this).children('td').eq(1).html(entry.params[i])
+ $(this).children().each(function(j){
116
+ $(this).children().eq(1).children().eq(1).html(entry.params[i]);
117
+ })
118
}
119
});
120
0 commit comments