Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to do calculations in mustache.js templates?

I want to multiple a value called ratio by a fixed amount e.g. 240

My tag looks like this:

<div><img src="https://s3.amazonaws.com/com.myapp.demo/{{url}}" class="item" style="height:{{ratio * 240}}"></div>

Since the url value is displayed correctly, I feel it must be the calculation that is causing me trouble.

share|improve this question
2  
Why not do the calculation before that value is passed to the template? Can you please show us the code that you're using to render the template? – Ryan Bigg Oct 27 '12 at 4:48
are you sure its not the fact that you're forgetting the "px" – Jimmy Oct 27 '12 at 4:51
I don't think Mustache supports that at all; listen to Ryan, do the computation in JavaScript before handing anything to Mustache. – mu is too short Oct 27 '12 at 4:53
Yes I can do the calculation before passing it to the template, but the amount of work to do that is a lot more, so I wanted to avoid it.That's they way I'm doing it now. – Ankur Oct 27 '12 at 4:57
2  
I think you might have missed the bit where Mustache is logic-less. It's understandable, seeing as how they don't mention it until the first word on the Mustache website ;) – bobthecow Oct 27 '12 at 5:59
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.