blob: 4f35251365ad0a32f13d3394a6cb8df7b606e8e1 [file] [log] [blame]
// Copyright 2015 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
var jq = require('jquery');
var window = require('global/window');
var $;
if (window.document) {
$ = jq;
} else {
var jsdom = require('jsdom').jsdom;
window = jsdom().parentWindow;
$ = jq(window);
}
module.exports = $;