summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2014-10-10 13:06:20 -0400
committerJules Laplace <jules@okfoc.us>2014-10-10 13:06:20 -0400
commit76dbc0a4be582ccbf6c4d339fb0d1096f087b39d (patch)
treeca7e83f212c5d3eb1f20984c8a36ae0821269570
parent478361d2fe51e24e45ddb683118c6a0fe4eec895 (diff)
parent2db2887430c01a1e1ce0d85d056fb300db084de3 (diff)
merge
-rw-r--r--public/assets/javascripts/ui/site/ProfileView.js9
-rwxr-xr-xpublic/assets/stylesheets/app.css4
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 a15ea39..d6a231f 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;