Fixed a problem when auto-generating a simple note snippet with no content.

master
Pacman Ghost 2 years ago committed by Pacman Ghost
parent 2ee42f37b5
commit ee4d8fbe02
  1. 2
      vasl_templates/webapp/static/simple_notes.js

@ -184,7 +184,7 @@ function _do_edit_simple_note( template_id, player_no, $sortable2, $entry, defau
}
}
// check if we should automatically generate a snippet
if ( isKeyDown( "Shift" ) ) {
if ( isKeyDown( "Shift" ) && data.caption !== "" ) {
var $elem = $entry.find( "img.snippet" ) ;
if ( $elem.length !== 0 )
$elem.click() ;

Loading…
Cancel
Save