mohnish/money

View on GitHub
app/assets/javascripts/money/views/payment_view.js

Summary

Maintainability
A
35 mins
Test Coverage

M.PaymentView = M.BaseView.extend({
  tagName: 'li',

  className: 'payment list-group-item',

  templatePath: 'payments/show',

  render: function() {
    this.$el.html(this.template(this.model.toJSON()));
    return this;
  }
});