diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-11-03 02:16:30 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-11-10 22:48:01 +0530 |
commit | 3a76ee47bff07142ea8f71a5a262f873b95aa034 (patch) | |
tree | fda89dafd8d6959ba0c007f1a6ca13195b8ff359 | |
parent | 62039ad5a1fd5e2a9a713d8bfd10e0d0e50fe02f (diff) | |
download | rails-3a76ee47bff07142ea8f71a5a262f873b95aa034.tar.gz rails-3a76ee47bff07142ea8f71a5a262f873b95aa034.tar.bz2 rails-3a76ee47bff07142ea8f71a5a262f873b95aa034.zip |
update turbolinks readme link [ci skip]
-rw-r--r-- | guides/source/working_with_javascript_in_rails.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/working_with_javascript_in_rails.md b/guides/source/working_with_javascript_in_rails.md index 011303c311..10b9dddd02 100644 --- a/guides/source/working_with_javascript_in_rails.md +++ b/guides/source/working_with_javascript_in_rails.md @@ -322,7 +322,7 @@ this: end ``` -Notice the format.js in the respond_to block; that allows the controller to +Notice the format.js in the `respond_to` block; that allows the controller to respond to your Ajax request. You then have a corresponding `app/views/users/create.js.erb` view file that generates the actual JavaScript code that will be sent and executed on the client side. @@ -379,7 +379,7 @@ $(document).on "page:change", -> For more details, including other events you can bind to, check out [the Turbolinks -README](https://github.com/rails/turbolinks/blob/ec9ca4d6cf9626e03a672f3b9e7968c816aff94e/README.md). +README](https://github.com/rails/turbolinks/blob/master/README.md). Other Resources --------------- |