Your IP : 216.73.216.84


Current Path : /home/helpink/www/media/com_akeebabackup/js/
Upload File :
Current File : /home/helpink/www/media/com_akeebabackup/js/Discover.js

/**
 * @package   akeebabackup
 * @copyright Copyright (c)2006-2025 Nicholas K. Dionysopoulos / Akeeba Ltd
 * @license   GNU General Public License version 3, or later
 */
"use strict";

// Object initialisation
if (typeof akeebabackup === "undefined")
{
    var akeebabackup = {};
}

akeebabackup.System.documentReady(function ()
{
    document.getElementById("browsebutton")
            .addEventListener("click", function ()
            {
                var directory = document.getElementById("directory");

                akeebabackup.Configuration.onBrowser(directory.value, directory);
            });
});