You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

51 lines
1005 B

(function() {
if ( wappalyzer == null ) return;
var w = wappalyzer;
w.adapter = {
/**
* Initialize
*/
init: function() {
window.document.addEventListener('DOMContentLoaded', function() {
w.analyze('http://google.com', function(url) {
var
html = '<script src="jquery.js"><meta name="generator" content="WordPress"/>',
url = 'http://foo.blogspot.com',
headers = { 'Server': 'Apache' },
env = [ 'Mootools' ]
;
return {
html: html,
url: url,
headers: headers,
env: env
};
});
});
},
/**
* Display apps
*/
displayApps: function(args) {
document.getElementById('apps').innerHTML = '';
args.apps.map(function(app) {
document.getElementById('apps').innerHTML += '<img src="images/icons/' + app + '.ico" width="16" height="16"/> ' + app + '<br/>';
});
},
/**
* Go to URL
*/
goToURL: function(args) {
window.open(args.url);
}
};
w.init();
})();