Skip to content

Instantly share code, notes, and snippets.

@kenji0x02
Created June 16, 2013 08:40
Show Gist options
  • Save kenji0x02/5791415 to your computer and use it in GitHub Desktop.
Save kenji0x02/5791415 to your computer and use it in GitHub Desktop.
トグルのサンプルプログラム。backbone.jsのモデルで使った例。
(function() {
var Task = Backbone.Model.extend({
defaults: {
completed: false
},
toggle: function() {
this.set('completed', !this.get('completed'));
}
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment