summaryrefslogtreecommitdiff
path: root/public/assets/javascripts/ui/editor/WallpaperPicker.js
diff options
context:
space:
mode:
authorJulie Lala <jules@okfoc.us>2014-06-13 01:23:27 -0400
committerJulie Lala <jules@okfoc.us>2014-06-13 01:26:11 -0400
commitff0b10665ed839f2ae5855b90cc8dd26d3ef740e (patch)
treedbe09b3e3f47977770dd472d668f87d0ce32229c /public/assets/javascripts/ui/editor/WallpaperPicker.js
parent4d02975c65a819c15d38b3df56a454cbfebe636b (diff)
bring in lightcontrol & wallpaper picker
Diffstat (limited to 'public/assets/javascripts/ui/editor/WallpaperPicker.js')
-rw-r--r--public/assets/javascripts/ui/editor/WallpaperPicker.js14
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");
+ },
+
+})