summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNick Pope <nick.pope@flightdataservices.com>2020-01-27 13:21:52 +0000
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2020-01-28 08:37:41 +0100
commitc9bf1910e2c1a72244dbd1e3dd9a3ff7215b8b4a (patch)
treefb1ed2bf8af2e8470cae12d9d05222ac230ca3df /docs
parent7edd06a9cf0e7207d21d4afc819fac80e1288ff0 (diff)
Refs #30997 -- Added link to Fetch API in release notes.
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/3.1.txt9
1 files changed, 5 insertions, 4 deletions
diff --git a/docs/releases/3.1.txt b/docs/releases/3.1.txt
index 185292bd1b..221cf39dee 100644
--- a/docs/releases/3.1.txt
+++ b/docs/releases/3.1.txt
@@ -473,10 +473,11 @@ Miscellaneous
* The ``HttpRequest.is_ajax()`` method is deprecated as it relied on a
jQuery-specific way of signifying AJAX calls, while the current usage tends
- to use the ``fetch()`` JavaScript API. Depending on your use case, you can
- either write your own AJAX detection method, or use the new
- :meth:`.HttpRequest.accepts` method if your code depends on the client
- ``Accept`` HTTP header.
+ to use the JavaScript `Fetch API
+ <https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API>`_. Depending on
+ your use case, you can either write your own AJAX detection method, or use
+ the new :meth:`.HttpRequest.accepts` method if your code depends on the
+ client ``Accept`` HTTP header.
.. _removed-features-3.1: