Initial commit
This commit is contained in:
14
app/javascript/packs/issues_and_concerns.js
Normal file
14
app/javascript/packs/issues_and_concerns.js
Normal file
@@ -0,0 +1,14 @@
|
||||
$(document).on("turbolinks:load", () => {
|
||||
let handleNotesFieldVisibility = function() {
|
||||
if($("#unreleased_appearance_note_category").children("option:selected").val() === 'other') {
|
||||
$("#unreleased_appearance_notes").show();
|
||||
} else {
|
||||
$("#unreleased_appearance_notes").hide();
|
||||
}
|
||||
};
|
||||
|
||||
$(document).on("change", "#unreleased_appearance_note_category", handleNotesFieldVisibility);
|
||||
|
||||
window.handleNotesFieldVisibility = handleNotesFieldVisibility;
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user