mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00

* Added a selectbox and updated nyaasi to include two. * Added a "default" field for settings.
6 lines
164 B
JavaScript
6 lines
164 B
JavaScript
Handlebars.registerHelper('ifCond', function (v1, v2, options) {
|
|
if(v1 === v2) {
|
|
return options.fn(this);
|
|
}
|
|
return options.inverse(this);
|
|
}); |