remove dead code

This commit is contained in:
ansuz 2016-07-29 18:08:23 +02:00
parent 551d38c930
commit caf1a6f01c

View File

@ -47,8 +47,6 @@ define([
return html.replace(/</g, '&lt;'); return html.replace(/</g, '&lt;');
}; };
var makeRecentPadsTable = function (recentPads) { var makeRecentPadsTable = function (recentPads) {
if (!recentPads.length) { return; } if (!recentPads.length) { return; }
recentPads.some(function (pad, index) { recentPads.some(function (pad, index) {
@ -130,7 +128,6 @@ define([
$('table').attr('style', ''); $('table').attr('style', '');
$tryit.text(Messages.recentPads); $tryit.text(Messages.recentPads);
} }
//recentPads.sort(Cryptpad.mostRecent);
}); });
}); });