Skip to content

Instantly share code, notes, and snippets.

@RyanNutt
Last active March 8, 2018 19:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save RyanNutt/22ca2298aac916b531db2c66baceb2ec to your computer and use it in GitHub Desktop.
Save RyanNutt/22ca2298aac916b531db2c66baceb2ec to your computer and use it in GitHub Desktop.
Adds a copy checkbox to move multiple questions dialog in Canvas
// Adds the checkbox so you can copy instead of just move
$('.move_question_dialog_actions').append('<input type="checkbox" name="copy" id="copy_question" value="1" checked>');
// Check all the questions
$('li.list_question input').prop('checked', true);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment