help.js 319 B

123456789
  1. if (navigator.vendor.indexOf("Opera") != -1) {
  2. Array.prototype.forEach.call(document.querySelectorAll(".chrome-only-content"), function(content) {
  3. content.hidden = true;
  4. });
  5. } else {
  6. Array.prototype.forEach.call(document.querySelectorAll(".opera-only-content"), function(content) {
  7. content.hidden = true;
  8. });
  9. }