MyDealz Toggle Comments

Adds functionallity to toggles cascaded comments on mydealz.de

נכון ליום 12-08-2016. ראה הגרסה האחרונה.

// ==UserScript==
// @name         MyDealz Toggle Comments
// @namespace    http://www.mydealz.de/profile/richi2k
// @version      0.1
// @description  Adds functionallity to toggles cascaded comments on mydealz.de 
// @author       richi2k
// @require      https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js
// @match        http://www.mydealz.de/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    $(".bbcode_quote_body").hide();
    $(".bbcode_quote_head").css("cursor", "pointer");
    
    $(".bbcode_quote_head").click(function(){
        $(this).siblings(".bbcode_quote_body").toggle(); 
    });
    
})();