varWallpaperPicker=View.extend({el:".wallpaper",events:{"click .paper1":'pick',},toggle:function(){this.$el.toggleClass("active");// toggle the class that makes the cursor a paintbucket// $("body").removeClass("pastePaper");},pick:function(e){$("body").toggleClass("pastePaper");$(e.currentTarget).toggleClass("active");}})