Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for dismissInsight (0.14 sec)

  1. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/script.js

    }
    
    function initializeProjectPage(report) {
        $(document).ready(function() {
            // event handling to close the insight div
            $('#insight').on('click', '#dismissInsight', function(event) {
                $('#insight').fadeOut();
                event.preventDefault();
            });
    
            // creates a node of a dependency tree
            function createDependencyNode(dependency) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 24 19:38:03 UTC 2020
    - 8.2K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/style.css

    }
    #dependencies {
        margin-right: 30px;
    }
    #insight {
        position: fixed;
        right: 50px;
        top: 50px;
        display: none;
        width: 70%;
        box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    }
    #dismissInsight {
        float: right;
        background:url("../images/d.png") -18px -53px no-repeat !important;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }
    .insightTree {
        height: 450px;
        overflow: auto;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jul 18 00:02:31 UTC 2014
    - 2K bytes
    - Viewed (0)
Back to top