Don't collapse color menu when click on empty area

This commit is contained in:
Matias De lellis
2019-02-12 21:09:54 -03:00
parent 1bc8b45222
commit 0b28bc4d13

View File

@@ -599,6 +599,10 @@ View.prototype = {
$(this).toggleClass("open"); $(this).toggleClass("open");
}); });
$('#colors-folder > ul').click(function (event) {
event.stopPropagation();
});
$('#notes-folder').click(function () { $('#notes-folder').click(function () {
$(this).toggleClass("open"); $(this).toggleClass("open");
}); });