Skip to content

Instantly share code, notes, and snippets.

@trabianmatt
Last active December 11, 2015 03:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trabianmatt/4539375 to your computer and use it in GitHub Desktop.
Save trabianmatt/4539375 to your computer and use it in GitHub Desktop.
sample titanium-backbone view
template = require './template'
module.exports = class Window extends Backbone.View
viewName: 'Window'
attributes:
backgroundColor: '#eee'
layout: 'vertical'
events: ->
'click Button.clickable': -> alert 'Told you so!'
render: ->
@$el.html template
title: 'Installation was successful using Jade!'
@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment