aboutsummaryrefslogtreecommitdiffstats
path: root/lib/dom_utils.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dom_utils.coffee')
-rw-r--r--lib/dom_utils.coffee15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/dom_utils.coffee b/lib/dom_utils.coffee
index 501e43a5..a99cb5a6 100644
--- a/lib/dom_utils.coffee
+++ b/lib/dom_utils.coffee
@@ -1,20 +1,5 @@
DomUtils =
#
- # Adds the given CSS to the page.
- #
- addCssToPage: (css, id) ->
- return if document.getElementById(id)
- head = document.getElementsByTagName("head")[0]
- if (!head)
- head = document.createElement("head")
- document.documentElement.appendChild(head)
- style = document.createElement("style")
- style.id = id
- style.type = "text/css"
- style.appendChild(document.createTextNode(css))
- head.appendChild(style)
-
- #
# Runs :callback if the DOM has loaded, otherwise runs it on load
#
documentReady: do ->