thecore_dataentry_with_date_start_and_end 1.2.4 → 1.2.5
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5a6e5e3779b24c8bf7ca98ffad852a389333a7bf37f2badf09037c0a20efab2d
|
4
|
+
data.tar.gz: 79b64065f4dec3a433d600776f5b3cc7c313c891586406eb62c368ceb5e8b8ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7c287f45d69abb22d822f4a89a73215f6e5297e6c1900eece835999a4a067ee84e33c1b6fb5478cd3e570068878d0f85c1b88e98b94144bf7c797e089996a9ba
|
7
|
+
data.tar.gz: 3ac1088fac0a37c37c56d130dfedc966e72c19bbecf34a9edc3ea74b730e9edb679cca8910926677013351d51373cfd60fb39dd67f83d23195d1effce0898a88
|
@@ -22,19 +22,19 @@
|
|
22
22
|
resetInfo();
|
23
23
|
}
|
24
24
|
|
25
|
-
function captureCTRLSpace(event) {
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
}
|
39
|
-
$(document).on('keydown', captureCTRLSpace);
|
25
|
+
// function captureCTRLSpace(event) {
|
26
|
+
// // Capture all the keypresses and if they are a return,
|
27
|
+
// // then "click" the send button
|
28
|
+
// // event.stopPropagation();
|
29
|
+
// // event.preventDefault();
|
30
|
+
// var keycode = (event.keyCode ? event.keyCode : event.which);
|
31
|
+
// if (event.ctrlKey && keycode == '32') {
|
32
|
+
// console.log(`Keycode: ${keycode}`);
|
33
|
+
// console.log(`Is ctrlKey? ${event.ctrlKey}`);
|
34
|
+
// $("#data-action").click();
|
35
|
+
// //return true;
|
36
|
+
// }
|
37
|
+
// // return false;
|
38
|
+
// }
|
39
|
+
// $(document).on('keydown', captureCTRLSpace);
|
40
40
|
</script>
|