define and use flags to enable the home page table

pull/1/head
ansuz 8 years ago
parent 5cd714b18a
commit 27d5559b0c

@ -12,5 +12,8 @@ define(function() {
*/
config.notificationTimeout = 5000;
config.USE_FS_STORE = false;
config.USE_HOMEPAGE_TABLE = true;
return config;
});

@ -1,6 +1,5 @@
define([
'/customize/messages.js',
//'/customize/DecorateToolbar.js',
'/customize/application_config.js',
'/common/cryptpad-common.js',
'/bower_components/lil-uri/uri.min.js',
@ -9,6 +8,9 @@ define([
], function (Messages, Config, Cryptpad, LilUri, LS) {
var $ = window.$;
var USE_TABLE = Config.USE_HOMEPAGE_TABLE;
var USE_FS_STORE = Config.USE_FS_STORE;
var APP = window.APP = {
Cryptpad: Cryptpad,
};
@ -139,20 +141,22 @@ define([
$('iframe').attr('style', '');
$tryit.removeAttr('data-localization');
$tryit.text(Messages.recentPadsIframe);
//makeRecentPadsTable(recentPads);
if (USE_TABLE) {
makeRecentPadsTable(recentPads);
}
}
/*if (hasRecent) {
if (USE_TABLE && hasRecent) {
$('table').attr('style', '');
// Race condition here, this is triggered before the localization in HTML
// so we have to remove the data-localization attr
$tryit.removeAttr('data-localization');
$tryit.text(Messages.recentPads);
}*/
}
});
};
displayCreateButtons();
Cryptpad.ready(function () {
console.log("ready");
@ -161,7 +165,6 @@ define([
$tbody = $table.find('tbody');
$tryit = $('#tryit');
DecorateToolbar.main($('#bottom-bar'));
Cryptpad.styleAlerts();
refreshTable();

Loading…
Cancel
Save