thecore_dataentry_with_date_start_and_end 1.2.1 → 1.2.2
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8a4f03cb242e94f7c2c33abb6149d92e55d2ea23bda5d9ab2a8fa7a81150a2bf
|
4
|
+
data.tar.gz: 7eb446183c6635fc945f440722484c9ac885ff7b6a39c96075b499e078d50947
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 607ae1b988be6e250fec96bbebd933caede28c074ef31532b9281ea7d158ef047c41463bdb913819c18c76412f2c929ca1d63ccf5fb482e9879d044345d66dcd
|
7
|
+
data.tar.gz: 25c049fd419dfc09e0fa3dcc924d771b3c37dd3a21b0cb951e4a80f29f2f9d8161f97150febdeb03fd8cdba911b0ef83bedfe15a708cfd03efdb1adfe1070cb4
|
@@ -25,8 +25,8 @@
|
|
25
25
|
function captureCTRLSpace(event) {
|
26
26
|
// Capture all the keypresses and if they are a return,
|
27
27
|
// then "click" the send button
|
28
|
-
event.stopPropagation();
|
29
|
-
event.preventDefault();
|
28
|
+
// event.stopPropagation();
|
29
|
+
// event.preventDefault();
|
30
30
|
var keycode = (event.keyCode ? event.keyCode : event.which);
|
31
31
|
console.log(`Keycode: ${keycode}`);
|
32
32
|
console.log(`Is ctrltKey? ${event.ctrltKey}`);
|