livechat 0.5.3 → 0.5.4
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/livechat/dashboard.js +2 -2
- data/lib/livechat/version.rb +1 -1
- data/lib/livechat/widget.js +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f04a8c3aee0c2e7c9f4f3eff556bf450f4f81844750d8ebfb80d058ac49e180
|
|
4
|
+
data.tar.gz: 0f62d39bd16d1e02836fe8dbd8a777652e466db06406c60108a3ef75c3321161
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2c3cbfefe5b627c5e919b9306ea72509026e107d28e5a69c5e83923286d6bf7e360ee5c8bfb5b0481883267dbf61630e1cfae40819d31760e0121463602e2cc6
|
|
7
|
+
data.tar.gz: b1c8c7782956dd04291838094131f904970011cfb92ed08473a359ad02046af18c88fc04b38d3c0e917361db5e7de3b79871fcb15c49a13d1d666d94a751a248
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.5.4
|
|
4
|
+
|
|
5
|
+
- Balanced the recording controls visually: the stop/finish square now uses
|
|
6
|
+
the same icon box as the cancel control, so the actions read with equal
|
|
7
|
+
weight in the composer.
|
|
8
|
+
|
|
3
9
|
## 0.5.3
|
|
4
10
|
|
|
5
11
|
- Refined the audio recording controls. While recording, the composer now
|
data/lib/livechat/dashboard.js
CHANGED
|
@@ -161,8 +161,8 @@
|
|
|
161
161
|
stop.setAttribute("aria-label", labels.stopRecording);
|
|
162
162
|
stop.title = labels.stopRecording;
|
|
163
163
|
stop.innerHTML =
|
|
164
|
-
'<svg viewBox="0 0 24 24" width="
|
|
165
|
-
'<rect x="
|
|
164
|
+
'<svg viewBox="0 0 24 24" width="18" height="18" aria-hidden="true">' +
|
|
165
|
+
'<rect x="5" y="5" width="14" height="14" rx="2" fill="currentColor"/></svg>';
|
|
166
166
|
actions.appendChild(cancel);
|
|
167
167
|
actions.appendChild(stop);
|
|
168
168
|
bar.appendChild(actions);
|
data/lib/livechat/version.rb
CHANGED
data/lib/livechat/widget.js
CHANGED
|
@@ -420,8 +420,8 @@
|
|
|
420
420
|
stop.setAttribute("aria-label", config.labels.stopRecording);
|
|
421
421
|
stop.title = config.labels.stopRecording;
|
|
422
422
|
stop.innerHTML =
|
|
423
|
-
'<svg viewBox="0 0 24 24" width="
|
|
424
|
-
'<rect x="
|
|
423
|
+
'<svg viewBox="0 0 24 24" width="18" height="18" aria-hidden="true">' +
|
|
424
|
+
'<rect x="5" y="5" width="14" height="14" rx="2" fill="currentColor"/></svg>';
|
|
425
425
|
stop.addEventListener("click", stopRecording);
|
|
426
426
|
actions.appendChild(cancel);
|
|
427
427
|
actions.appendChild(stop);
|