Skip to content

Instantly share code, notes, and snippets.

View sgentile's full-sized avatar

Steve Gentile sgentile

  • Mile Two
  • Dayton, Ohio
View GitHub Profile
@OakRaven
OakRaven / app.coffee
Created January 6, 2012 17:31
HTML Test for CoffeeScript and KnockoutJS
class ComboBoxItem
constructor: (@id, @name) ->
class App
textEntry: ko.observable("")
collection: ko.observableArray([])
addToCollection: ->
item = new ComboBoxItem(@collection().length, @textEntry())