Removes a console.log.

This commit is contained in:
Lars Jung 2012-10-12 01:31:50 +02:00
parent 8658bac71a
commit b87dc5a45b

View file

@ -64,7 +64,6 @@ modulejs.define('core/server-request-mock-aai', ['$', '_', 'core/settings', 'cor
parse = function (absHref, html) { parse = function (absHref, html) {
html = '<div id="body-mock">' + html.replace(/^[\s\S]*<body.*?>|<\/body>[\s\S]*$/g, '') + '</div>'; html = '<div id="body-mock">' + html.replace(/^[\s\S]*<body.*?>|<\/body>[\s\S]*$/g, '') + '</div>';
console.log(html, $(html));
var $table = $(html).find('#data-apache-autoindex table'); var $table = $(html).find('#data-apache-autoindex table');
return _.compact(_.map($table.find('td').closest('tr'), function (tr) { return _.compact(_.map($table.find('td').closest('tr'), function (tr) {