Skip to content
This repository has been archived by the owner on Oct 31, 2020. It is now read-only.

Commit

Permalink
mm
Browse files Browse the repository at this point in the history
  • Loading branch information
secretgspot committed May 4, 2012
1 parent e1331e7 commit 5f49f9a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions app/templates/runway/slot.html
Expand Up @@ -161,9 +161,10 @@ <h3 id="results-det">we've got just a match for your</h3>
//$('#slot-results figure').toggleClass('flipped');
});

$('#slot-results figure').click(function(e) {
e.preventDefault();
$(this).toggleClass('flipped');

$("#slot-results").on("click", "img", function() {
$(this).parent().toggleClass("flipped");
console.log("did it");
});

$('#btn-slotme').click(function(e) {
Expand Down
4 changes: 2 additions & 2 deletions assets/css/runway.css
Expand Up @@ -301,6 +301,7 @@ bottom: 0;
left: 0;
right: 0;
background: rgba(255, 255, 255, 0.93);
min-height: 1069px;
}
#slot-results-header {
margin: 3em 0 2em 6em;
Expand All @@ -312,8 +313,7 @@ left: 50%;
margin-left: -112px;
top: 475px;
}
#slot-results figure { position: relative; }
#slot-results figcaption { position: absolute; }
#slot-results figcaption { position: absolute; z-index: 999; }
#slot-r-accessories {
position: absolute !important;
left: 69px;
Expand Down

0 comments on commit 5f49f9a

Please sign in to comment.