diff options
author | Zachary Scott <e@zzak.io> | 2015-06-09 12:00:06 -0400 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2015-06-09 12:00:06 -0400 |
commit | 7fe770cf4e62554b89b7bfda5ce7d4a67427eaf6 (patch) | |
tree | e13d00f5a52199cc1952777565ae1e3af5ede9c1 /guides/source | |
parent | c0c3ef3a298f0f63e4dc32699c2e5f0e2cab3faf (diff) | |
parent | 0cab6c948482d73a200315f7930349c4eaa05176 (diff) | |
download | rails-7fe770cf4e62554b89b7bfda5ce7d4a67427eaf6.tar.gz rails-7fe770cf4e62554b89b7bfda5ce7d4a67427eaf6.tar.bz2 rails-7fe770cf4e62554b89b7bfda5ce7d4a67427eaf6.zip |
Merge pull request #20493 from dansteele/patch-1
Removed AJAX example with poor convention adherence
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/working_with_javascript_in_rails.md | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/guides/source/working_with_javascript_in_rails.md b/guides/source/working_with_javascript_in_rails.md index e3856a285a..19128f288e 100644 --- a/guides/source/working_with_javascript_in_rails.md +++ b/guides/source/working_with_javascript_in_rails.md @@ -191,30 +191,6 @@ $(document).ready -> Obviously, you'll want to be a bit more sophisticated than that, but it's a start. You can see more about the events [in the jquery-ujs wiki](https://github.com/rails/jquery-ujs/wiki/ajax). -Another possibility is returning javascript directly from the server side on -remote calls: - -```ruby -# articles_controller -def create - respond_to do |format| - if @article.save - format.html { ... } - format.js do - render js: <<-endjs - alert('Article saved successfully!'); - window.location = '#{article_path(@article)}'; - endjs - end - else - format.html { ... } - format.js do - render js: "alert('There are empty fields in the form!');" - end - end - end -end -``` NOTE: If javascript is disabled in the user browser, `format.html { ... }` block should be executed as fallback. |