diff options
| author | Niklas Baumstark | 2012-01-25 01:22:19 +0100 |
|---|---|---|
| committer | Niklas Baumstark | 2012-04-10 23:58:07 +0200 |
| commit | d761e429f7c6b8583d32f7849fdbeb9aa2b50faf (patch) | |
| tree | 31c4f9304b0dc33755978bbfa3ce50f88f4af28e /lib/utils.js | |
| parent | a0d0d8ecfe40a1b802f72dff100185875ee63e2f (diff) | |
| download | vimium-d761e429f7c6b8583d32f7849fdbeb9aa2b50faf.tar.bz2 | |
introduce a utils helper for prototype inheritance
Diffstat (limited to 'lib/utils.js')
| -rw-r--r-- | lib/utils.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/utils.js b/lib/utils.js index 9b5cfcb9..7ed7c9ad 100644 --- a/lib/utils.js +++ b/lib/utils.js @@ -39,6 +39,14 @@ var utils = { return document.evaluate(xpath, document.documentElement, namespaceResolver, resultType, null); }, + /** Sets up prototype inheritance */ + extend: function(base, sub) { + function surrogateCtor() { } + surrogateCtor.prototype = base.prototype; + sub.prototype = new surrogateCtor(); + sub.prototype.constructor = sub; + }, + /** Creates a single DOM element from :html */ createElementFromHtml: function(html) { var tmp = document.createElement("div"); |
