Actions
Task #91122
closedEpic #87417: Integrate proper Content Security Policy (CSP) handling
Task #87418: Refactor and remove usage of inline scripts in backend
Introduce DocumentService as JQuery.ready substitute
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend JavaScript
Target version:
-
Start date:
2020-04-18
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
10
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
DocumentService provides native JavaScript functions to detect DOM ready-state using a Promise.
$(document).ready(() => {...});
can be replaced by
import documentService = require('TYPO3/CMS/Core/DocumentService'); documentService.onReady().then(() => {...});
Actions