瀏覽代碼

Docs: Added missing link to the CSP guide.

Aleksander Nowodzinski 6 年之前
父節點
當前提交
33708b7472
共有 1 個文件被更改,包括 1 次插入1 次删除
  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.