We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3583226 commit d6cf55bCopy full SHA for d6cf55b
index.html
@@ -769,11 +769,11 @@ <h3>On user interaction</h3>
769
caches.open('mysite-article-' + id)
770
.then(function(cache) {
771
fetch('/get-article-urls?id=' + id)
772
- .then(function(response) {
773
- return response.json();
774
- }).then(function(urls) {
775
- cache.addAll(urls);
776
- });
+ .then(function(response) {
+ return response.json();
+ }).then(function(urls) {
+ cache.addAll(urls);
+ });
777
});
778
779
</code></pre>
0 commit comments