Skip to content

Instantly share code, notes, and snippets.

@itokami1123dev
Last active December 20, 2015 01:39
Show Gist options
  • Save itokami1123dev/6050362 to your computer and use it in GitHub Desktop.
Save itokami1123dev/6050362 to your computer and use it in GitHub Desktop.
var MenuItem = Backbone.Model.extend({
defaults:{
checked: false, // 選択フラグ
name: "", // ハンバーガー名
price: 0 // お値段
},
toggleChecked: function(){
this.set("checked", !this.get("checked") );
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment