Browse Source

[4.3] MSPB-60: Store value in a hidden input value every time 'skip instructions' is checked and unchecked (#321)

4.3
Pilar Candia 5 years ago
committed by GitHub
parent
commit
cb42c6d35a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions
  1. +6
    -0
      submodules/vmboxes/vmboxes.js

+ 6
- 0
submodules/vmboxes/vmboxes.js View File

@ -232,6 +232,12 @@ define(function(require) {
}
});
templateVMBox.find('#skip_instructions').on('click', function() {
var isChecked = $(this).prop('checked');
templateVMBox.find('#skip_instructions_input').val(isChecked);
});
templateVMBox.find('#announcement_only').on('click', function() {
var $this = $(this),
isChecked = $this.prop('checked'),


Loading…
Cancel
Save