diff --git a/isso/js/embed.js b/isso/js/embed.js index df2ccd1..c5f1265 100644 --- a/isso/js/embed.js +++ b/isso/js/embed.js @@ -3,6 +3,12 @@ require(["ready", "app/api", "app/isso", "app/count", "app/dom", "app/markup"], "use strict"; domready(function() { + var css = $.new("link"); + css.type = "text/css"; + css.rel = "stylesheet"; + css.href = api.endpoint + "/css/isso.css"; + $("head").append(css); + count(); $("#isso-thread").append($.new('h4'));