Skip to content

Commit eb72fb0

Browse files
authored
Merge pull request #511 from jeneg/8-2
Custom elements
2 parents 008e618 + adf89b6 commit eb72fb0

File tree

3 files changed

+115
-115
lines changed

3 files changed

+115
-115
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11

2-
Please note:
3-
1. We clear `setInterval` timer when the element is removed from the document. That's important, otherwise it continues ticking even if not needed any more. And the browser can't clear the memory from this element and referenced by it.
4-
2. We can access current date as `elem.date` property. All class methods and properties are naturally element methods and properties.
2+
Зверніть увагу:
3+
1. Ми очищаємо таймер `setInterval`, коли елемент видаляється з документа. Це важливо, інакше він продовжує працювати, навіть якщо більше не потрібен. І браузер не зможе очистити пам'ять від цього елемента і посилань на нього.
4+
2. Ми можемо отримати доступ до поточної дати через властивість `elem.date`. Усі методи та властивості класу є методами та властивостями елементів.
Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11

2-
# Live timer element
2+
# Елемент таймера в режимі реального часу
33

4-
We already have `<time-formatted>` element to show a nicely formatted time.
4+
У нас вже є елемент `<time-formatted>` для відображення гарно відформатованого часу.
55

6-
Create `<live-timer>` element to show the current time:
7-
1. It should use `<time-formatted>` internally, not duplicate its functionality.
8-
2. Ticks (updates) every second.
9-
3. For every tick, a custom event named `tick` should be generated, with the current date in `event.detail` (see chapter <info:dispatch-events>).
6+
Створіть елемент `<live-timer>` для відображення поточного часу:
7+
1. Він повинен використовувати `<time-formatted>` всередині, а не дублювати його функціонал.
8+
2. Оновлюватися щосекунди.
9+
3. Для кожного оновлення має генеруватися користувацька подія з назвою `tick`, з поточною датою у `event.detail` (див. розділ <info:dispatch-events>).
1010

11-
Usage:
11+
Використання:
1212

1313
```html
1414
<live-timer id="elem"></live-timer>
@@ -18,6 +18,6 @@ Usage:
1818
</script>
1919
```
2020

21-
Demo:
21+
Демонстрація:
2222

2323
[iframe src="solution" height=40]

0 commit comments

Comments
 (0)