[[#{text.about-community}]] telegram 14 |
15 |17 | 18 | 19 | 20 |
21 |
14 | <script>
15 | function loadScript(src, callback) {
16 | const body = document.querySelector('body')
17 | const script = document.createElement('script');
18 | script.src = src;
19 | script.onload = callback;
20 | body.appendChild(script);
21 | };
22 |
23 | document.addEventListener('DOMContentLoaded', function () {
24 | const scriptSrc = 'https://cdn.jsdelivr.net/gh/hexlet/hexlet-correction@latest/src/widget/index.js?v=' + new Date().getTime();
25 | loadScript(scriptSrc, function () {
26 | handleTypoReporter({
27 | authorizationToken: '[[${wksBasicToken}]]',
28 | workSpaceUrl: '[[${rootUrl}]]',
29 | workSpaceId: '[[${wksId}]]'})
30 | });
31 | });
32 | </script>
33 |
34 | @FieldMatch annotations on the same element
53 | *
54 | * @see FieldMatchIgnoreCase
55 | */
56 | @Target({TYPE, ANNOTATION_TYPE})
57 | @Retention(RUNTIME)
58 | @Documented
59 | @interface List {
60 |
61 | FieldMatchIgnoreCase[] value();
62 | }
63 | }
64 |
--------------------------------------------------------------------------------
/src/main/resources/templates/workspaces.html:
--------------------------------------------------------------------------------
1 |
2 |
5 |
6 |