mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
20 lines
660 B
CoffeeScript
20 lines
660 B
CoffeeScript
RootView = require 'views/core/RootView'
|
|
template = require 'templates/legal'
|
|
Products = require 'collections/Products'
|
|
|
|
module.exports = class LegalView extends RootView
|
|
id: 'legal-view'
|
|
template: template
|
|
|
|
initialize: ->
|
|
@products = new Products()
|
|
@supermodel.loadCollection(@products, 'products')
|
|
|
|
afterRender: ->
|
|
super()
|
|
basicSub = @products.findWhere({name: 'basic_subscription'})
|
|
return unless basicSub
|
|
text = $.i18n.t('legal.cost_description')
|
|
text = text.replace('{{price}}', (basicSub.get('amount') / 100).toFixed(2))
|
|
text = text.replace('{{gems}}', basicSub.get('gems'))
|
|
@$('#cost-description').text(text)
|