All Downloads are FREE. Search and download functionalities are using the official Maven repository.

.intellij.plugins.verifier-core.1.379.source-code.reportScript.js Maven / Gradle / Ivy

Go to download

Core classes of JetBrains Plugin Verifier with verification rules, general usage detection and bytecode verification engine

There is a newer version: 1.380
Show newest version
//$( "#tabs" ).tabs();
$(".plugin").accordion({active: false, collapsible: true, heightStyle: 'content'});
$(".update").accordion({active: false, collapsible: true, heightStyle: 'content'});

$(".detailsLink").click(function () {
    var longDiv = $(this).parent().find(".longDescription");

    if (longDiv.css('display') !== 'block') {
        longDiv.css('display', 'block')
    } else {
        longDiv.css('display', 'none')
    }

    return false
});

$(".updateHasProblems .uMarker").attr('title', "Problems found");
$(".excluded .uMarker").attr('title', "Excluded");

$(".pluginHasProblem .pMarker").attr('title', "Problems found");
$(".pluginOk .pMarker").attr('title', "Excluded");




© 2015 - 2024 Weber Informatics LLC | Privacy Policy