mirror of
https://github.com/Jackett/Jackett.git
synced 2025-12-20 13:26:59 +01:00
* Move service config service back into shared .NET Framework Library * Move Content files into shared folder. Make autoface load different assembilies depending on what framework is using it. * Change my mind on what the shared module should be called. Common Module is too bland. * DotNet4.SocksProxy is not yet publically .NET Standard. Revert to previous SocksWebProxy package. * Check in unstaged change to test dependency injection setup.
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);
|
|
}); |