0

I have a statement like below,

{{#ifCond IsTrue}}

how can i use ifCond statement with not like below,

{{#ifCond not IsTrue}}
Community
  • 1
  • 1
  • have you looked at the unless block helper? basically an if not helper – Quince Jun 17 '14 at 07:49
  • possible duplicate of [how to implement not with if statement in ember handlebar?](http://stackoverflow.com/questions/10540176/how-to-implement-not-with-if-statement-in-ember-handlebar) – nikoshr Jun 17 '14 at 07:59

1 Answers1

0

You can use an else statement:

{{#ifCond a b}}
  {{!-- a is equal to b. --}}
{{else}}
   {{!-- a is not equal to b --}}
{{/ifCond}}
ialphan
  • 1,241
  • 1
  • 17
  • 30