diff options
author | Brooks Reese <brooksreese@gmail.com> | 2015-08-11 10:03:50 -0500 |
---|---|---|
committer | Brooks Reese <brooksreese@gmail.com> | 2015-08-11 10:03:50 -0500 |
commit | f5c3f41baea98af9bb4956c2352e006b0c9431db (patch) | |
tree | 2811bd587725c8e538f36e49ea8fc695364ddcb7 /guides | |
parent | 942f41263152277dd5d23744a97a67e8c1a8d3d4 (diff) | |
download | rails-f5c3f41baea98af9bb4956c2352e006b0c9431db.tar.gz rails-f5c3f41baea98af9bb4956c2352e006b0c9431db.tar.bz2 rails-f5c3f41baea98af9bb4956c2352e006b0c9431db.zip |
[ci skip] Fix broken link markup
Diffstat (limited to 'guides')
-rw-r--r-- | guides/source/working_with_javascript_in_rails.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/working_with_javascript_in_rails.md b/guides/source/working_with_javascript_in_rails.md index 4c996dd2d0..95cc1ee490 100644 --- a/guides/source/working_with_javascript_in_rails.md +++ b/guides/source/working_with_javascript_in_rails.md @@ -357,7 +357,7 @@ This gem uses Ajax to speed up page rendering in most applications. Turbolinks attaches a click handler to all `<a>` on the page. If your browser supports -[PushState](https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Manipulating_the_browser_history#The_pushState()_method), +[PushState](https://developer.mozilla.org/en-US/docs/Web/Guide/API/DOM/Manipulating_the_browser_history), Turbolinks will make an Ajax request for the page, parse the response, and replace the entire `<body>` of the page with the `<body>` of the response. It will then use PushState to change the URL to the correct one, preserving |