mirror of
https://github.com/thelounge/thelounge
synced 2024-11-27 14:30:57 +00:00
12 lines
172 B
JavaScript
12 lines
172 B
JavaScript
var diff;
|
|
|
|
Handlebars.registerHelper(
|
|
"diff", function(a, opt) {
|
|
if (a != diff) {
|
|
diff = a;
|
|
return opt.fn(this);
|
|
} else {
|
|
return opt.inverse(this);
|
|
}
|
|
}
|
|
);
|