Skip to content

Instantly share code, notes, and snippets.

View jaapz's full-sized avatar

Jaap Broekhuizen jaapz

View GitHub Profile
@jaapz
jaapz / todo.js
Last active August 29, 2015 14:01 — forked from anonymous/todo.js
$(function() {
"use strict";
// Model. Als toggle gecalled word zal done geinvert worden. Ook word de titel aangepast zodat de view opnieuw rendert.
var Todo = Backbone.Model.extend({
defaults: {
title: "Something to remember",
done: false
},