Skip to content

Commit

Permalink
Fix #12 - "Save" button cannot be clicked
Browse files Browse the repository at this point in the history
  • Loading branch information
joshbalfour committed May 27, 2016
1 parent fbe5988 commit 7a2136a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion extension/src/options/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
transition: 0.5s opacity;
background: white;
padding: 5px;
z-index: 99;
z-index: -1;
}
#strictness{
margin-top: 5px;
Expand Down
4 changes: 4 additions & 0 deletions extension/src/options/options.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,14 @@ function dsj_event_detail(action, label, value){

function morestrictnessinfo(){
document.getElementById('strictnessinfo').style.opacity = 1;
document.getElementById('strictnessinfo').style.zIndex = 99;
}

function lessstrictnessinfo(){
document.getElementById('strictnessinfo').style.opacity = 0;
setTimeout(function(){
document.getElementById('strictnessinfo').style.zIndex = -1;
}, 500);
}

document.getElementById('strictnessinfoToggle').addEventListener("mouseout",lessstrictnessinfo);
Expand Down

0 comments on commit 7a2136a

Please sign in to comment.