mazerte/generator-footguard

View on GitHub
app/templates/src/coffee/app/views/app_view.coffee

Summary

Maintainability
Test Coverage
define [
  'backbone'
  'underscore'
  'text!templates/app.html'
], (Backbone, _, tpl) ->

  class App extends Backbone.View

    el: "#total"

    events: {}

    initialize: (options) ->


    render: ->
      @$el.html _.template( tpl, {  } )

  appView = new App()