start building out views

This commit is contained in:
Michael Q Larson
2014-10-13 14:14:51 -07:00
parent d87db465ad
commit a5985cd73d
435 changed files with 248550 additions and 1172 deletions

View File

@@ -0,0 +1,9 @@
"use strict";
var jsdom = require("../../lib/jsdom");
var window = jsdom.jsdom().parentWindow;
jsdom.jQueryify(window, "http://code.jquery.com/jquery.js", function() {
window.jQuery("body").append("<div class='testing'>Hello World, It works!</div>");
console.log(window.jQuery(".testing").text());
});