mirror of
https://github.com/skishore/makemeahanzi.git
synced 2025-11-01 12:07:15 +08:00
5 lines
190 B
JavaScript
5 lines
190 B
JavaScript
Handlebars.registerHelper('selected', (current, value) =>
|
|
({value: value, selected: current === value ? 'selected' : undefined}));
|
|
|
|
Handlebars.registerHelper('equals', (a, b) => a === b);
|