Commit 5da64e5f authored by Nicolas Dandrimont's avatar Nicolas Dandrimont 🤔
Browse files

A click on the QA "visibility" header toggles the +

parent 3992e34c
...@@ -65,7 +65,7 @@ $(document).ready(function() { ...@@ -65,7 +65,7 @@ $(document).ready(function() {
/* General stuff */ /* General stuff */
$('.confirm').click(function(){ $('.confirm').click(function(){
var answer = confirm('Are you sure?'); var answer = confirm('Are you sure?');
return answer // answer is a boolean return answer
}); });
/* QA plugin stuff */ /* QA plugin stuff */
...@@ -75,7 +75,7 @@ $(document).ready(function() { ...@@ -75,7 +75,7 @@ $(document).ready(function() {
}); });
$(".visibility").click(function() { $(".visibility").click(function() {
toggle_qa(this, "fast"); toggle_qa($(this).siblings(".qa-header"), "fast");
}); });
$(".severity-info .qa-header").each(function() { $(".severity-info .qa-header").each(function() {
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment