• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ckeditor / ckeditor5 / 6424b8cc-523c-4290-8912-83c3ecc9f501

23 Sep 2024 05:01AM CUT coverage: 100.0%. Remained the same
6424b8cc-523c-4290-8912-83c3ecc9f501

push

circleci

web-flow
Merge pull request #17123 from ckeditor/ck/17067

Fix (ui): Fix scrolling in dropdowns when block toolbar button is active. Closes #17067

14068 of 14068 branches covered (100.0%)

Branch coverage included in aggregate %.

4 of 4 new or added lines in 1 file covered. (100.0%)

37062 of 37062 relevant lines covered (100.0%)

11433.89 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

100.0
/packages/ckeditor5-alignment/src/alignment.ts
1
/**
2
 * @license Copyright (c) 2003-2024, CKSource Holding sp. z o.o. All rights reserved.
3
 * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
4
 */
5

6
/**
7
 * @module alignment/alignment
8
 */
9

10
import { Plugin } from 'ckeditor5/src/core.js';
11

12
import AlignmentEditing from './alignmentediting.js';
13
import AlignmentUI from './alignmentui.js';
14

15
/**
16
 * The text alignment plugin.
17
 *
18
 * For a detailed overview, check the {@glink features/text-alignment Text alignment} feature guide
19
 * and the {@glink api/alignment package page}.
20
 *
21
 * This is a "glue" plugin which loads the {@link module:alignment/alignmentediting~AlignmentEditing} and
22
 * {@link module:alignment/alignmentui~AlignmentUI} plugins.
23
 */
24
export default class Alignment extends Plugin {
25
        /**
26
         * @inheritDoc
27
         */
28
        public static get requires() {
29
                return [ AlignmentEditing, AlignmentUI ] as const;
31✔
30
        }
31

32
        /**
33
         * @inheritDoc
34
         */
35
        public static get pluginName() {
36
                return 'Alignment' as const;
24✔
37
        }
38
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc