output to screen, not console

This commit is contained in:
Iam Naughton Phier 2014-08-06 17:24:27 +03:00
parent dcadf74d55
commit b613205970
5 changed files with 59 additions and 9 deletions

View file

@ -110,9 +110,15 @@
}
}).click((function(_this) {
return function() {
$('#sahlioutput').text(dumpjson(_this.data));
$('#dumparea').show(100);
return console.log(dumpjson(_this.data));
};
})(this));
$('#closespan').click(function() {
$(this.parentElement.parentElement).hide();
return $('#sahlioutput').text('');
});
return this.buildlist(this.data);
};