wco_email 0.1.1.64 → 0.1.1.66
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: baf88fb18ff9b70d50132024c511a6b366c81b39d3df0e339f1aef20ab156576
|
4
|
+
data.tar.gz: eb9c57ec9c169b33dc8ee5cc3669227c3de1fcdc5c99ee7cd5583851bbeb01d8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b83ae7309c42dd3b6088133f34bf7417d169154d3e7b75f4ae0f2b70b845d667048769e865529fa17e243a8a2383fc360da25c1a57c5aaba7967f6a8f813100
|
7
|
+
data.tar.gz: a9460e58fd2413f350a812118dca16768ee2f2a156d3189f00cb79977d9f402badf69266cfbedb688444c1417192ed8313fc96e84b05eac9981f0bd47db3c43e
|
@@ -1,45 +1,6 @@
|
|
1
1
|
$(function() {
|
2
2
|
|
3
3
|
|
4
|
-
/*
|
5
|
-
* select-all
|
6
|
-
* _vp_ 2023-02-28
|
7
|
-
**/
|
8
|
-
$("input[type='checkbox'].i-sel").change((ev) => {
|
9
|
-
// logg(ev, 'changed-112')
|
10
|
-
|
11
|
-
$( $(".n-selected")[0] ).html( $("input[type='checkbox'].i-sel:checked").length )
|
12
|
-
})
|
13
|
-
$("th.select-all input[type='checkbox']").change((e) => {
|
14
|
-
const count = $("input[type='checkbox'].i-sel:checked").length
|
15
|
-
const new_state = count ? false : true // all will be checked?
|
16
|
-
|
17
|
-
$(".select-all input[type='checkbox']").prop('checked', new_state)
|
18
|
-
|
19
|
-
$( $("input[type='checkbox'].i-sel") ).each( i => {
|
20
|
-
$( $("input[type='checkbox'].i-sel")[i] ).prop('checked', new_state)
|
21
|
-
})
|
22
|
-
|
23
|
-
$( $(".n-selected")[0] ).html( $("input[type='checkbox'].i-sel:checked").length )
|
24
|
-
})
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
// $("body.email_conversations-show .preview-btn").click(function(e) {
|
29
|
-
// // logg($(this).data(), 'clicked')
|
30
|
-
// var msgId = $(this).data().msg.id
|
31
|
-
// var msgC = $(`.msg-container[data-msg-id='${msgId}']`) // msgContainer
|
32
|
-
// if ($(msgC).data('expanded')) {
|
33
|
-
// $(msgC).data('expanded', false)
|
34
|
-
// msgC.find(".to-expand").css('display', 'none')
|
35
|
-
// } else {
|
36
|
-
// $(msgC).data('expanded', true)
|
37
|
-
// msgC.find(".to-expand").css('display', 'block')
|
38
|
-
// }
|
39
|
-
// })
|
40
|
-
|
41
|
-
|
42
|
-
|
43
4
|
$(".archive-btn").click(function(e) {
|
44
5
|
if ( !confirm('Are you sure?') ) { return; }
|
45
6
|
|