We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b993e33 commit a9b90beCopy full SHA for a9b90be
js/render.js
@@ -223,7 +223,7 @@
223
224
var mutateObserver = new MutationObserver(function(records) {
225
records.forEach(function(record) {
226
- if(record.attributeName == "style"){
+ if(record.attributeName == "style" || record.attributeName == "class"){
227
var element = $(record.target);
228
var displayStyle = window.getComputedStyle(element[0]).getPropertyValue("display");
229
if(element.hasClass("visualizer-hidden-container-resized") || displayStyle == "none") return;
0 commit comments