more scoping fixes for browser

This commit is contained in:
Zachary Carter 2012-12-03 17:10:37 -08:00
Родитель 72743ae4c5
Коммит fa710a96aa
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -1,3 +1,7 @@
if (typeof GombotCrypto === 'undefined') {
var GombotCrypto = require('./crypto.js');
}
;(function() {
GombotClient = function(host, port) {
@ -7,10 +11,6 @@ GombotClient = function(host, port) {
var xhr = typeof jQuery !== 'undefined' ? jQuery.ajax : require('xhrequest');
if (typeof GombotCrypto === 'undefined') {
var GombotCrypto = require('./crypto.js');
}
function request(args, cb) {
var url = args.scheme ? args.scheme : 'http';
var method = args.method.toUpperCase();