Commit fd9956c5 fd9956c5ef25f5f4b098d2d45d71bb03d300c8d2 by Nicolas Perriault

proper var scoping in clientutils module

1 parent d2e40873
......@@ -29,7 +29,7 @@
*/
(function(exports) {
exports.create = function create() {
return new ClientUtils();
return new this.ClientUtils();
};
/**
......