mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-02 21:50:40 +00:00
10 lines
215 B
CoffeeScript
10 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)
|