blacklight-spotlight 3.6.0.beta9 → 3.6.0.beta10

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: 5fadc9198c2af9fd3281a0817eda720e5ba9d55e4e906c56a0b341091cde7021
4
- data.tar.gz: 1f57ac2f95f89156fb115252c663207277cff0bacf144875814471f444625cd7
3
+ metadata.gz: 17ba7063f03c11f47d55df8f497db57b89933eca4040b9991eb285eb66877223
4
+ data.tar.gz: a9c201deeb7ebcb3d4f4481f5ed5903a6126b02ddb589a64096ac3472c99814d
5
5
  SHA512:
6
- metadata.gz: cdbccd456febe35f4e359839a268cdaff1390ea349507d4300958edc5971e18f4b1535684db30b4868d8aca9758e3c0f9b2221a0eab7ad65aff121cdd4a8b6a6
7
- data.tar.gz: 410d5926e01b945a18505a7fdc61b98f0615471911cd13580030fcd609201af80a8164a377e3079841d5bd7412fee150466a0d19e253f1a0c87a13d9726999af
6
+ metadata.gz: 54f956d04742f327214c88d2f9a188038c60e9bc24bb3f1e4f0ba4d1a05f0467b7b59bcdd5bf7d58df42b33b5f6aee003dfe8b82d51efc6850b3e94d8243d4da
7
+ data.tar.gz: 38b464e845bdf8d043b851d91d00773f93a8e02bb5d9b3960ffa32f083f0d5222ba564344cc2e872bb5f07f49145999df70864b49ddf31959a48fe8b91d448a0
@@ -5579,8 +5579,8 @@ class Users {
5579
5579
  function edit_user(event) {
5580
5580
  event.preventDefault();
5581
5581
  $(this).closest('tr').hide();
5582
- id = $(this).attr('data-target');
5583
- edit_view = $("[data-edit-for='"+id+"']", container).show();
5582
+ const id = $(this).attr('data-target');
5583
+ const edit_view = $("[data-edit-for='"+id+"']", container).show();
5584
5584
  $.each(edit_view.find('input[type="text"], select'), function() {
5585
5585
  // Cache original values incase editing is canceled
5586
5586
  $(this).data('orig', $(this).val());
@@ -5589,8 +5589,8 @@ class Users {
5589
5589
 
5590
5590
  function cancel_edit(event) {
5591
5591
  event.preventDefault();
5592
- id = $(this).closest('tr').attr('data-edit-for');
5593
- edit_view = $("[data-edit-for='"+id+"']", container).hide();
5592
+ const id = $(this).closest('tr').attr('data-edit-for');
5593
+ const edit_view = $("[data-edit-for='"+id+"']", container).hide();
5594
5594
  clear_errors(edit_view);
5595
5595
  rollback_changes(edit_view);
5596
5596
  $("[data-show-for='"+id+"']", container).show();
@@ -5610,13 +5610,13 @@ class Users {
5610
5610
  }
5611
5611
 
5612
5612
  function destroy_user(event) {
5613
- id = $(this).attr('data-target');
5613
+ const id = $(this).attr('data-target');
5614
5614
  $("[data-destroy-for='"+id+"']", container).val('1');
5615
5615
  }
5616
5616
 
5617
5617
  function new_user(event) {
5618
5618
  event.preventDefault();
5619
- edit_view = $("[data-edit-for='new']", container).show();
5619
+ const edit_view = $("[data-edit-for='new']", container).show();
5620
5620
  $.each(edit_view.find('input[type="text"], select'), function() {
5621
5621
  // Cache original values incase editing is canceled
5622
5622
  $(this).data('orig', $(this).val());