aboutsummaryrefslogtreecommitdiffstats
path: root/content_scripts/vimium_frontend.coffee
diff options
context:
space:
mode:
authorJez Ng2012-08-19 23:27:44 -0700
committerJez Ng2012-08-20 00:43:45 -0700
commitdfb2c58e3d76cfc0131a1e30cba4ae8d23853726 (patch)
tree13632f0978351f03e0142a9b1fa8bafaf2302537 /content_scripts/vimium_frontend.coffee
parentc2257a03126c0e7af77e3c0697498a18c7f6be06 (diff)
downloadvimium-dfb2c58e3d76cfc0131a1e30cba4ae8d23853726.tar.bz2
More refactoring-cleanup.
* vimium_frontend now has a pretty decent set of exports * Generic linkHints code has been moved to DomUtils, so future features can reuse the code.
Diffstat (limited to 'content_scripts/vimium_frontend.coffee')
-rw-r--r--content_scripts/vimium_frontend.coffee17
1 files changed, 0 insertions, 17 deletions
diff --git a/content_scripts/vimium_frontend.coffee b/content_scripts/vimium_frontend.coffee
index 0fc8d518..4de0a695 100644
--- a/content_scripts/vimium_frontend.coffee
+++ b/content_scripts/vimium_frontend.coffee
@@ -977,20 +977,6 @@ Tween =
value = (elapsed / state.duration) * (state.to - state.from) + state.from
state.onUpdate(value)
-#
-# Adds the given CSS to the page.
-#
-addCssToPage = (css, 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)
-
initializePreDomReady()
window.addEventListener("DOMContentLoaded", initializeOnDomReady)
@@ -1000,11 +986,8 @@ window.onbeforeunload = ->
scrollX: window.scrollX
scrollY: window.scrollY)
-# TODO(philc): Export a more tighter, more coherent interface.
root = exports ? window
-root.window = window
root.settings = settings
-root.addCssToPage = addCssToPage
root.HUD = HUD
root.handlerStack = handlerStack
root.frameId = frameId