Skip to content

Commit

Permalink
fix apostrophe path for promotion table
Browse files Browse the repository at this point in the history
  • Loading branch information
fohristiwhirl committed Aug 20, 2019
1 parent c576ff1 commit d25b67c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 95_renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -1087,7 +1087,7 @@ function NewRenderer() {
let td = document.createElement("td");
td.width = config.square_size;
td.height = config.square_size;
td.style["background-image"] = "url('" + images[piece].src + "')";
td.style["background-image"] = images[piece].string_for_bg_style;
td.style["background-size"] = "contain";

// This isn't a memory leak is it? The handlers are deleted when the element is deleted, right?
Expand Down

0 comments on commit d25b67c

Please sign in to comment.