ish_manager 0.1.8.364 → 0.1.8.365
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/app/assets/javascripts/ish_manager/application.js +2 -4
- 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: e590476cd088614cb747164c20d26c56df98e60f7f5a45fc5f0b471164163dca
|
|
4
|
+
data.tar.gz: 175834838ed586c7755c4fc7e7bdedb6ce025657a28dcbed55fce6c23fd15f20
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a0620126cac070a29ed666c9fd6b44620baf2fdf1065e32b46cd05d5226de73fdaf5d01f8b9655df315f9b9652e1682e179bb9afe710a0c2b398b9faf39c85b2
|
|
7
|
+
data.tar.gz: 7e8904f16e0cb5889a6689f277c71ccb8c6bd1511f51130195cd17bce0bd5bd5a7b11e65fa2be322e0be19dadceadd76dfdbea7264ac6d43108dac9085e96c0a
|
|
@@ -130,8 +130,7 @@ $(function () {
|
|
|
130
130
|
})
|
|
131
131
|
|
|
132
132
|
$(".delete-btn").click(function(e) {
|
|
133
|
-
|
|
134
|
-
|
|
133
|
+
const jwt_token = $("#Config").data('jwt-token')
|
|
135
134
|
const action_path = $(this).data('url')
|
|
136
135
|
const out = []
|
|
137
136
|
|
|
@@ -139,14 +138,13 @@ $(function () {
|
|
|
139
138
|
let val = $($("input[type='checkbox'].i-sel:checked")[idx]).val()
|
|
140
139
|
out.push(val)
|
|
141
140
|
})
|
|
142
|
-
logg(out, 'out')
|
|
143
141
|
|
|
144
142
|
$.ajax({
|
|
145
143
|
url: action_path,
|
|
146
144
|
type: 'DELETE',
|
|
147
145
|
data: {
|
|
148
146
|
ids: out,
|
|
149
|
-
jwt_token:
|
|
147
|
+
jwt_token: jwt_token,
|
|
150
148
|
},
|
|
151
149
|
success: e => {
|
|
152
150
|
logg((e||{}).responseText, 'deleted Ok')
|