summaryrefslogtreecommitdiff
path: root/public/assets/javascripts/ui/site/ProfileView.js
diff options
context:
space:
mode:
authorJulie Lala <jules@okfoc.us>2014-07-17 14:50:44 -0400
committerJulie Lala <jules@okfoc.us>2014-07-17 14:50:44 -0400
commitb1e172be9e8268532610b3e7fe2a4e339eccd1a2 (patch)
tree02f12e006aefbec5f492556586493db40af6b760 /public/assets/javascripts/ui/site/ProfileView.js
parent93ad35155739e90bec31769733b3dcfe741b93d9 (diff)
spinning projects on home view
Diffstat (limited to 'public/assets/javascripts/ui/site/ProfileView.js')
-rw-r--r--public/assets/javascripts/ui/site/ProfileView.js13
1 files changed, 1 insertions, 12 deletions
diff --git a/public/assets/javascripts/ui/site/ProfileView.js b/public/assets/javascripts/ui/site/ProfileView.js
index 8661bcd..f3b35d9 100644
--- a/public/assets/javascripts/ui/site/ProfileView.js
+++ b/public/assets/javascripts/ui/site/ProfileView.js
@@ -11,18 +11,7 @@ var ProfileView = View.extend({
'thirteen'];
$(".bio").addClass(choice(classes));
- $("td.border").each(function() {
- var iframe = $(this).find("iframe").get('0')
- if (! iframe) return
- $(this).on({
- mouseenter: function(e){
- iframe.contentWindow.postMessage("spin-on", window.location.origin)
- },
- mouseleave: function(e){
- iframe.contentWindow.postMessage("spin-off", window.location.origin)
- }
- })
- })
+ this.projectList = new ProjectList ()
}
})