Add undefined variables

main
Janpot 11 years ago
parent 3fa4559313
commit a5528eb2cf

@ -26,7 +26,7 @@ var wappalyzer = (function() {
* Calculate confidence total * Calculate confidence total
*/ */
getConfidence: function() { getConfidence: function() {
var total = 0; var total = 0, id;
for ( id in this.confidence ) { for ( id in this.confidence ) {
total += this.confidence[id]; total += this.confidence[id];
@ -243,7 +243,7 @@ var wappalyzer = (function() {
*/ */
analyze: function(hostname, url, data) { analyze: function(hostname, url, data) {
var var
i, j, app, confidence, type, regexMeta, regexScript, match, content, meta, header, checkImplies, version, i, j, app, confidence, type, regexMeta, regexScript, match, content, meta, header, checkImplies, version, id,
profiler = new Profiler(), profiler = new Profiler(),
apps = {} apps = {}
; ;