build_emoji: Change sprite CSS files to use hyphens in names.

This is more consistent with our other names in emoji infra.
This commit is contained in:
Harshit Bansal
2018-08-25 23:46:23 +05:30
committed by Tim Abbott
parent 9bd56d0ce4
commit ec2ebd1cc9
6 changed files with 7 additions and 7 deletions

View File

@@ -143,7 +143,7 @@ exports.report_emojiset_change = function () {
var sprite = new Image();
sprite.onload = function () {
var sprite_css_href = "/static/generated/emoji/" + page_params.emojiset + "_sprite.css";
var sprite_css_href = "/static/generated/emoji/" + page_params.emojiset + "-sprite.css";
$("#emoji-spritesheet").attr('href', sprite_css_href);
};
sprite.src = "/static/generated/emoji/sheet-" + page_params.emojiset + "-64.png";