Commit fd9956c5 fd9956c5ef25f5f4b098d2d45d71bb03d300c8d2 by Nicolas Perriault

proper var scoping in clientutils module

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