diff options
author | Yves Senn <yves.senn@gmail.com> | 2015-08-11 17:33:55 +0200 |
---|---|---|
committer | Yves Senn <yves.senn@gmail.com> | 2015-08-11 17:34:59 +0200 |
commit | df5ada78c0b0e962d65e89e7487fd35289dc9157 (patch) | |
tree | 99d50f2c2533cff309ea59b27f1eeef1592d331c | |
parent | 2117a535b5ab5d88ccb9834fa14b28863ffb69cc (diff) | |
parent | f5c3f41baea98af9bb4956c2352e006b0c9431db (diff) | |
download | rails-df5ada78c0b0e962d65e89e7487fd35289dc9157.tar.gz rails-df5ada78c0b0e962d65e89e7487fd35289dc9157.tar.bz2 rails-df5ada78c0b0e962d65e89e7487fd35289dc9157.zip |
Merge pull request #21195 from brooksreese/fix_broken_link_markup
[ci skip] Fix broken link markup
-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..1c42ff2914 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#The_pushState%28%29_method), 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 |