diff options
Diffstat (limited to 'public/assets/javascripts/ui/editor/WallpaperPicker.js')
| -rw-r--r-- | public/assets/javascripts/ui/editor/WallpaperPicker.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/public/assets/javascripts/ui/editor/WallpaperPicker.js b/public/assets/javascripts/ui/editor/WallpaperPicker.js new file mode 100644 index 0000000..59dc7dd --- /dev/null +++ b/public/assets/javascripts/ui/editor/WallpaperPicker.js @@ -0,0 +1,14 @@ + +var WallpaperPicker = View.extend({ + el: ".wallpaper", + + events: { + }, + + toggle: function(){ + this.$el.toggleClass("active"); + // toggle the class that makes the cursor a paintbucket + // $("body").removeClass("pastePaper"); + }, + +}) |
