-
-
Save joepie91/14461c1bc4c72d3591f7edea01ceb72e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var resultTemplate = "" + | |
" <ul class='searchList'>" + | |
" <% _.each(paymentActions,function(paymentActivity){ %>" + | |
" <li><span class='amount visible-phone'>-<%= paymentActivity.grossAmount %></span>" + | |
" </li>" + | |
" <% }); %>" + | |
" </ul>"; | |
var template = _.template(resultTemplate, { | |
paymentActions: jsonData | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment