diff options
| author | Jules Laplace <jules@okfoc.us> | 2014-10-10 13:05:57 -0400 |
|---|---|---|
| committer | Jules Laplace <jules@okfoc.us> | 2014-10-10 13:05:57 -0400 |
| commit | fe550c015527d5a8953e2d7debbe9d325ac942df (patch) | |
| tree | adcc0d3ddadccd5a0f25ab9b9bcd26bec43f4860 | |
| parent | 078155bd9e878fc634c560474126f3271c27429a (diff) | |
remove bg
| -rw-r--r-- | public/assets/javascripts/ui/site/ProfileView.js | 9 | ||||
| -rwxr-xr-x | public/assets/stylesheets/app.css | 4 |
2 files changed, 11 insertions, 2 deletions
diff --git a/public/assets/javascripts/ui/site/ProfileView.js b/public/assets/javascripts/ui/site/ProfileView.js index f3b35d9..76d733c 100644 --- a/public/assets/javascripts/ui/site/ProfileView.js +++ b/public/assets/javascripts/ui/site/ProfileView.js @@ -1,6 +1,12 @@ var ProfileView = View.extend({ + el: ".profilepage", + + events: { + "change #profile_avatar": "uploadAvatar", + }, + initialize: function() { }, @@ -12,6 +18,9 @@ var ProfileView = View.extend({ $(".bio").addClass(choice(classes)); this.projectList = new ProjectList () + }, + + uploadAvatar: function(){ } }) diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css index 6aab60c..2e23352 100755 --- a/public/assets/stylesheets/app.css +++ b/public/assets/stylesheets/app.css @@ -359,11 +359,11 @@ iframe.embed { height: 100%; text-align: center; overflow: hidden; - background-color: #ddd; + background-color: rgba(128,128,128,0.2); background-size: cover; } .projectList a:hover .room .mask { - background-color: rgba(238,238,238,0.1); + background-color: rgba(128,128,128,0.1); } .room .images { position: absolute; |
