overleaf/services/chat/public/coffee/utils/staticLoader.coffee

11 lines
215 B
CoffeeScript
Raw Normal View History

2014-08-15 09:50:36 +00:00
define [
"text!html/templates.html"
"text!css/chat.css"
], (templates, css)->
appendAssets : ->
$(document.body).append($(templates))
style = $("<style/>")
style.html(css)
$(document.body).append(style)