Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6
System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64
User : User ( 0)
PHP Version : 7.4.6
Disable Function : NONE
Directory :  C:/Program Files/Avast Software/Avast/gui_resources/1.0.663/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : C:/Program Files/Avast Software/Avast/gui_resources/1.0.663/common.js
/* 
	initial update - localization, installed components
*/
var isAvastium = (navigator.userAgent.indexOf("Avastium") > -1);

$(window).load(function () {
	// update dependencies / localization
	visitDOM(domReady);
});

function domReady() {
	// DOM is localized, in some pages it is good to show things only now
}


function visitDOM(finishCallback) {
    var v = document.getElementsByTagName('*');
    var args = [];
    var toVisit = [];
    for (var i = 0; i < v.length; i++) {

        var el = v[i];
        var depend = el.getAttribute('dependency');
        var avail = el.getAttribute('available_for');
        var ids = el.getAttribute('ids');

        if (depend || avail || ids) {
            args.push([depend, avail, ids]);
            toVisit.push(el);
        }
    }
}