Commit 60d03524 60d03524a6acf8e6456e6cb3827d0046dce52ad7 by Nicolas Perriault

fixed #262 - Injecting clientScripts is not working

1 parent 1d151ab9
1 Subproject commit 788879483f987f3a49401d1f817ae30745c06bd7 1 Subproject commit e98991042dc266cbade70b3fe0dd612a7dfd273e
......
...@@ -953,7 +953,7 @@ Casper.prototype.injectClientScripts = function injectClientScripts() { ...@@ -953,7 +953,7 @@ Casper.prototype.injectClientScripts = function injectClientScripts() {
953 } else { 953 } else {
954 this.warn('Failed injecting %s client side', script); 954 this.warn('Failed injecting %s client side', script);
955 } 955 }
956 }); 956 }.bind(this));
957 return this; 957 return this;
958 }; 958 };
959 959
......