How to use OR condition in rivetsJS

778 Views Asked by At

How to use OR condition in rivetsJS while binding it in html dom. The below code does not work for me while using rivets. It works when i use a single condition

<div rv-class-highlight="view.year || view.month">
</div>
1

There are 1 best solutions below

0
kdaimiel On

I have been using a formatter

rivets.formatters.or = function(value, args) {
  return value || args;
};

And then

<div rv-class-highlight="view.year | or view.month">
</div>