Skip to content

Commit

Permalink
Merge pull request #100 from sbeleidy/fix_subscripts_poly_model
Browse files Browse the repository at this point in the history
Fix subscripts in polynomial model
  • Loading branch information
gabgoh authored Jul 11, 2018
2 parents 36d172e + dc462cf commit 691048b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
2 changes: 1 addition & 1 deletion public/assets/eigensum.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function renderEigenPanel(eigensum, U, x, b, wi, refit, hat, renderStars) {
function renderEquation(hat, value, number) {
var html = hat ? MathCache("phat") : MathCache("p");
html = html.replace('<span class="mord mathrm">0</span>', value);
html = html.replace('<span class="mord mathrm">1</span>', number);
html = html.replace('<span class="mord mathrm mtight">1</span>', number);
return html;
}

Expand Down
Loading

0 comments on commit 691048b

Please sign in to comment.