Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_integrityDetails.twig « templates « Installation « plugins - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ddf9712ec0e07ddfa659e9199b41bfae93e34680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<div id="integrity-results" title="{{ 'Installation_SystemCheckFileIntegrity'|translate }}" style="display:none; font-size: 62.5%;">
    <table>
        {% for msg in warningMessages %}
            <tr>
                <td>{{ msg }}</td>
            </tr>
        {% endfor %}
    </table>
</div>
<script type="text/javascript">
    <!--
    $(function () {
        $("#integrity-results").dialog({
            modal: true,
            autoOpen: false,
            width: 600,
            buttons: {
                Ok: function () {
                    $(this).dialog('close');
                }
            }
        });
    });
    $('#more-results').click(function () {
        $('#integrity-results').dialog('open');
    }).hover(function () {
        $(this).addClass("ui-state-hover");
    },
    function () {
        $(this).removeClass("ui-state-hover");
    }).mousedown(function () {
        $(this).addClass("ui-state-active");
    }).mouseup(function () {
        $(this).removeClass("ui-state-active");
    });
    //-->
</script>