mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-08 05:51:56 +00:00
11 lines
215 B
CoffeeScript
11 lines
215 B
CoffeeScript
|
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)
|