Kaynağa Gözat

Docs: Added missing link to the CSP guide.

Aleksander Nowodzinski 6 yıl önce
ebeveyn
işleme
33708b7472
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      docs/builds/guides/integration/csp.md

+ 1 - 1
docs/builds/guides/integration/csp.md

@@ -26,7 +26,7 @@ Some CSP directives have an impact on certain rich text editor features. Here's
 
 * `default-src 'none'`: resets the policy and blocks everything. All successive directives work as a white–list. By itself, as long as followed by other directives, it has no impact on the editor.
 * `connect-src 'self'`
-	* Allows the {@link features/image-upload editor upload features} to use XMLHttpReqests (AJAX) to upload files to the server, for instance when an image is pasted or dropped into the editor content. The `'self`' value ensures the requests remain within the same host.
+	* Allows the {@link features/image-upload editor upload features} to use [XMLHttpReqests](https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest) (AJAX) to upload files to the server, for instance when an image is pasted or dropped into the editor content. The `'self`' value ensures the requests remain within the same host.
 	* Allows {@link builds/guides/integration/saving-data#autosave-feature auto–saving editor data} using XMLHttpReqests.
 
 	**Note**: To use {@link features/ckfinder CKFinder} hosted from another domain, make sure the domain is also included in the directive value.