MyDealz Toggle Comments

Adds functionallity to toggles cascaded comments on mydealz.de

当前为 2016-08-12 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name MyDealz Toggle Comments
  3. // @namespace http://www.mydealz.de/profile/richi2k
  4. // @version 0.1
  5. // @description Adds functionallity to toggles cascaded comments on mydealz.de
  6. // @author richi2k
  7. // @require https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js
  8. // @match http://www.mydealz.de/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. $(".bbcode_quote_body").hide();
  15. $(".bbcode_quote_head").css("cursor", "pointer");
  16. $(".bbcode_quote_head").click(function(){
  17. $(this).siblings(".bbcode_quote_body").toggle();
  18. });
  19. })();