thelounge/client/js/libs/handlebars/equal.js

12 lines
189 B
JavaScript
Raw Normal View History

2014-07-20 21:49:44 +02:00
Handlebars.registerHelper(
"equal", function(a, b, opt) {
a = a.toString();
b = b.toString();
if (a == b) {
return opt.fn(this);
2014-08-16 21:49:28 +02:00
} else {
return opt.inverse(this);
2014-07-20 21:49:44 +02:00
}
}
);