Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
edit_item.js 284 B
$(document).ready(function () {
  // Populate the stack member field linked to the host on first page load
  update_stack_member();

  // Update the stack member field linked to the host when changing it
  $("#host_id").on("change", function () {
    update_stack_member();
  });
});