define([ '/customize/messages.js', '/customize/DecorateToolbar.js', '/common/cryptpad-common.js', '/bower_components/lil-uri/uri.min.js', '/customize/email.js', '/bower_components/jquery/dist/jquery.min.js', ], function (Messages, DecorateToolbar, Cryptpad, LilUri, Email) { var $ = window.$; var email = Email.makeScrambler(1); // slip past the spammers, then unscramble mailto links $('a[href^="mailto:"]').each(function () { $(this).attr('href', function (i, href) { return href.replace(/:(.*$)/, function (a, address) { return ':' + email.decrypt(address); }); }); }); DecorateToolbar.main($('#bottom-bar')); Cryptpad.styleAlerts(); var $table = $('table.scroll'); var $tbody = $table.find('tbody'); var $tryit = $('#tryit'); var now = new Date(); var hasRecent = false; var memorySpan = Cryptpad.timeframe; // thirty days var forgetPad = Cryptpad.forgetPad; var padTypes = { '/pad/': 'Pad', '/code/': 'Code', '/poll/': 'Poll', }; var truncateTitle = function (title, len) { if (typeof(title) === 'string' && title.length > len) { return title.slice(0, len) + '…'; } return title; }; var recentPads = Cryptpad.getRecentPads(); recentPads.sort(Cryptpad.mostRecent); var fixHTML = function (html) { return html.replace(/ memorySpan) { return true; } hasRecent = true; // split up the uri var uri = LilUri(pad.href); // derive the name var name = padTypes[uri.path()]; var title = pad.title || uri.parts.hash.slice(0,8); var shortTitle = truncateTitle(pad.title, 48); var date = new Date(pad.atime).toLocaleDateString(); var created = new Date(pad.ctime).toLocaleDateString(); if (date === now.toLocaleDateString()) { date = new Date(pad.atime).toLocaleTimeString().replace(/ /g, ''); } var id = 'pad-'+index; var $row = $('