ep_headings2 0.2.112 → 0.2.114
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/locales/be-tarask.json
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"@metadata": {
|
|
3
3
|
"authors": [
|
|
4
|
-
"Renessaince"
|
|
4
|
+
"Renessaince",
|
|
5
|
+
"Ucukor"
|
|
5
6
|
]
|
|
6
7
|
},
|
|
8
|
+
"ep_headings.style": "Стыль",
|
|
9
|
+
"ep_headings.normal": "Нармальны",
|
|
7
10
|
"ep_headings.h1": "Загаловак 1",
|
|
8
11
|
"ep_headings.h2": "Загаловак 2",
|
|
9
12
|
"ep_headings.h3": "Загаловак 3",
|
package/package.json
CHANGED
|
@@ -57,9 +57,13 @@ test.describe('ep_headings2 - Set Heading and ensure its removed properly', () =
|
|
|
57
57
|
|
|
58
58
|
// Move to a fresh second line — the selector should reset to
|
|
59
59
|
// "no heading" (-1) because the cursor is no longer on an H1.
|
|
60
|
+
// Use insertText instead of keyboard.type: Firefox under
|
|
61
|
+
// WITH_PLUGINS load racily drops chars from per-key events, which
|
|
62
|
+
// is the same fix etherpad core's writeToPad helper applied in
|
|
63
|
+
// #7625.
|
|
60
64
|
await page.keyboard.press('End');
|
|
61
65
|
await page.keyboard.press('Enter');
|
|
62
|
-
await page.keyboard.
|
|
66
|
+
await page.keyboard.insertText('Second Line');
|
|
63
67
|
|
|
64
68
|
// Wait for the selector to update to "-1" (Etherpad polls the
|
|
65
69
|
// current line's heading attribute on caret moves).
|