mirror of
https://github.com/pretix/pretix.git
synced 2026-05-07 15:34:02 +00:00
PDF Editor: Fix CSS-selector for non-alphanum question identifiers (Z#2399663)
This commit is contained in:
committed by
GitHub
parent
f9c71743d1
commit
5e88a3cfc3
@@ -286,7 +286,7 @@ var editor = {
|
||||
} else if (key.startsWith('meta:')) {
|
||||
return key.substr(5);
|
||||
}
|
||||
return $('#toolbox-content option[value='+key+'], #toolbox-content option[data-old-value='+key+']').attr('data-sample') || '???';
|
||||
return $('#toolbox-content option[value="'+key+'"], #toolbox-content option[data-old-value="'+key+'"]').attr('data-sample') || '???';
|
||||
},
|
||||
|
||||
_load_page: function (page_number, dump) {
|
||||
|
||||
Reference in New Issue
Block a user