Commit 86e28dbf 86e28dbf66df25635badec5c15819b0c6e2cbf39 by Nicolas Perriault

back to correct current stable version

1 parent 161d32ac
1 CasperJS Changelog 1 CasperJS Changelog
2 ================== 2 ==================
3 3
4 XXXX-XX-XX, v1.0 4 XXXX-XX-XX, v1.0.0-RC1
5 ---------------- 5 ----------------------
6 6
7 - fixed [#119](https://github.com/n1k0/casperjs/issues/119) - HTTP status wasn't properly caught 7 - fixed [#119](https://github.com/n1k0/casperjs/issues/119) - HTTP status wasn't properly caught
8 - fixed [#132](https://github.com/n1k0/casperjs/issues/132) - added ability to include js/coffee files using a dedicated option when using the [`casper test` command](http://casperjs.org/testing.html) 8 - fixed [#132](https://github.com/n1k0/casperjs/issues/132) - added ability to include js/coffee files using a dedicated option when using the [`casper test` command](http://casperjs.org/testing.html)
......
1 Subproject commit 8ef6a7b312c799466acf3691de0a59d7f48a4c29 1 Subproject commit df5d80463acbdb176d8e7e579400f5968188e212
......
...@@ -1637,6 +1637,10 @@ function createPage(casper) { ...@@ -1637,6 +1637,10 @@ function createPage(casper) {
1637 casper.options.onResourceRequested.call(casper, casper, request); 1637 casper.options.onResourceRequested.call(casper, casper, request);
1638 } 1638 }
1639 }; 1639 };
1640 page.onUrlChanged = function onUrlChanged(url) {
1641 casper.log(f('url changed to "%s"', url), "debug");
1642 casper.emit('url.changed', url);
1643 };
1640 casper.emit('page.created', page); 1644 casper.emit('page.created', page);
1641 return page; 1645 return page;
1642 } 1646 }
......