https://github.com/d3/d3
Raw File
Tip revision: 015c20be6162e97c5de0e06af30a79b75fec78ea authored by Mike Bostock on 23 March 2014, 21:10:55 UTC
Listen to the touch target.
Tip revision: 015c20b
index.js
var document = require("jsdom").jsdom("<html><head></head><body></body></html>"),
    window = document.createWindow(),
    globals = {};

// stash globals
if ("window" in global) globals.window = global.window;
global.window = window;
if ("document" in global) globals.document = global.document;
global.document = document;

// https://github.com/chad3814/CSSStyleDeclaration/issues/3
var CSSStyleDeclaration_prototype = window.CSSStyleDeclaration.prototype,
    CSSStyleDeclaration_setProperty = CSSStyleDeclaration_prototype.setProperty;
CSSStyleDeclaration_prototype.setProperty = function(name, value, priority) {
  return CSSStyleDeclaration_setProperty.call(this, name + "", value == null ? null : value + "", priority == null ? null : priority + "");
};

module.exports = require("./d3");

// restore globals
if ("window" in globals) global.window = globals.window;
else delete global.window;
if ("document" in globals) global.document = globals.document;
else delete global.document;
back to top