DICSS icon indicating copy to clipboard operation
DICSS copied to clipboard

Doesn't pull out

Open noway opened this issue 8 years ago • 0 comments

pullOut doesn't seem to work. Have to resort to this hack:

        var times = document.getElementById('dicss_wrapper').sheet.rules.length
        for (var i = 0; i < times; i++) {
          try {
            document.getElementById('dicss_wrapper').sheet.removeRule(0) // remove rule works better on IE i guess
          } catch(e) { }
        };

noway avatar May 04 '17 10:05 noway