Subversion Repositories Applications.reseau

Rev

Rev 10 | Rev 104 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

$(document).ready(function() {
        // Bouton "fermer la fenêtre" car on est (normalement) dans un popup
        $('button.fermer').click(function() {
                window.close();
        });

        // Préremplissage du champ "système" (pour obtenir le navigateur, c'est trop pas fiable)
        $('input[name="systeme"]').val(
                window.navigator.appCodeName
                + ' ' + window.navigator.appVersion
                + ' ' + window.navigator.platform
                + ' - UA : ' + window.navigator.userAgent
        );
});