From c9bf1910e2c1a72244dbd1e3dd9a3ff7215b8b4a Mon Sep 17 00:00:00 2001 From: Nick Pope Date: Mon, 27 Jan 2020 13:21:52 +0000 Subject: [PATCH] Refs #30997 -- Added link to Fetch API in release notes. --- docs/releases/3.1.txt | 9 +++++---- 1 file 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 + `_. 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: