render_async 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/app/views/render_async/_render_async.html.erb +1 -1
- data/lib/render_async/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c054d37191e7387bd9fadc6c8ab5879c01db45a5
|
4
|
+
data.tar.gz: afaf4b5b8a78464a776a8bf8c0bb3c21e15bac6e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 859086a41d3f75868629eb650639a24bd28aa48c74966a2152545800f6adb0c37dfa3e7d1db7c2e1a90f03cbdeb56777d8f9fb0411527245a97e34124a9213b0
|
7
|
+
data.tar.gz: 750ecc2a1fff9dbdfe518f986084b30dc19633e4859e60ba68ca33d24a75bcd9ba12479f29e9eab51a3b2ec2fba7034011fd712108e35ba371508b8398b0e508
|
@@ -9,7 +9,7 @@
|
|
9
9
|
<%= javascript_tag html_options do %>
|
10
10
|
(function($){
|
11
11
|
$.ajax({ url: "<%= path %>"}).always(function(response) {
|
12
|
-
$("#<%= container_name %>
|
12
|
+
$("#<%= container_name %>").replaceWith(response);
|
13
13
|
});
|
14
14
|
}(jQuery));
|
15
15
|
<% end %>
|
data/lib/render_async/version.rb
CHANGED