Remove old code
This commit is contained in:
parent
5322eff607
commit
a8ffac5dcd
@ -23,7 +23,6 @@ define([
|
|||||||
};
|
};
|
||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
Cryptpad.styleAlerts();
|
|
||||||
Cryptpad.addLoadingScreen();
|
Cryptpad.addLoadingScreen();
|
||||||
|
|
||||||
var ifrw = module.ifrw = $('#pad-iframe')[0].contentWindow;
|
var ifrw = module.ifrw = $('#pad-iframe')[0].contentWindow;
|
||||||
|
|||||||
@ -1111,55 +1111,6 @@ define([
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
// TODO remove editshare, viewshare, and viewopen
|
|
||||||
case 'editshare':
|
|
||||||
button = $('<a>', {
|
|
||||||
title: Messages.editShareTitle,
|
|
||||||
}).html('<span class="fa fa-users" style="font-family:FontAwesome;"></span>').append(' ' + Messages.editShare);
|
|
||||||
if (data && data.editHash) {
|
|
||||||
var editHash = data.editHash;
|
|
||||||
button.click(function () {
|
|
||||||
var baseUrl = window.location.origin + window.location.pathname + '#';
|
|
||||||
var url = baseUrl + editHash;
|
|
||||||
var success = Clipboard.copy(url);
|
|
||||||
if (success) {
|
|
||||||
common.log(Messages.shareSuccess);
|
|
||||||
common.findOKButton().click();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'viewshare':
|
|
||||||
button = $('<a>', {
|
|
||||||
title: Messages.viewShareTitle,
|
|
||||||
}).html('<span class="fa fa-eye" style="font-family:FontAwesome;"></span>').append(' ' + Messages.viewShare);
|
|
||||||
if (data && data.viewHash) {
|
|
||||||
button.click(function () {
|
|
||||||
var baseUrl = window.location.origin + window.location.pathname + '#';
|
|
||||||
var url = baseUrl + data.viewHash;
|
|
||||||
var success = Clipboard.copy(url);
|
|
||||||
if (success) {
|
|
||||||
common.log(Messages.shareSuccess);
|
|
||||||
common.findOKButton().click();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'viewopen':
|
|
||||||
button = $('<a>', {
|
|
||||||
title: Messages.viewOpenTitle,
|
|
||||||
}).html('<span class="fa fa-eye" style="font-family:FontAwesome;"></span>').append(' ' + Messages.viewOpen);
|
|
||||||
if (data && data.viewHash) {
|
|
||||||
button.click(function () {
|
|
||||||
var baseUrl = window.location.origin + window.location.pathname + '#';
|
|
||||||
var url = baseUrl + data.viewHash;
|
|
||||||
common.findOKButton().click();
|
|
||||||
window.open(url);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case 'present':
|
case 'present':
|
||||||
button = $('<button>', {
|
button = $('<button>', {
|
||||||
title: Messages.presentButtonTitle,
|
title: Messages.presentButtonTitle,
|
||||||
@ -1174,7 +1125,7 @@ define([
|
|||||||
style: 'font:'+size+' FontAwesome'
|
style: 'font:'+size+' FontAwesome'
|
||||||
});
|
});
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
button = $('<button>', {
|
button = $('<button>', {
|
||||||
'class': "fa fa-question",
|
'class': "fa fa-question",
|
||||||
style: 'font:'+size+' FontAwesome'
|
style: 'font:'+size+' FontAwesome'
|
||||||
@ -1390,7 +1341,6 @@ define([
|
|||||||
$userName.append(Messages.user_displayName + ': ');
|
$userName.append(Messages.user_displayName + ': ');
|
||||||
$userName.append($displayedName.clone());
|
$userName.append($displayedName.clone());
|
||||||
}
|
}
|
||||||
//$userName.append($displayedName.clone()); TODO remove ?
|
|
||||||
$userAdminContent.append($userName);
|
$userAdminContent.append($userName);
|
||||||
options.push({
|
options.push({
|
||||||
tag: 'p',
|
tag: 'p',
|
||||||
@ -1410,7 +1360,7 @@ define([
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
// Add the change display name button if not in read only mode
|
// Add the change display name button if not in read only mode
|
||||||
if (config.changeNameButtonCls && config.displayChangeName) { //readOnly !== 1) { TODO
|
if (config.changeNameButtonCls && config.displayChangeName) {
|
||||||
options.push({
|
options.push({
|
||||||
tag: 'a',
|
tag: 'a',
|
||||||
attributes: {'class': config.changeNameButtonCls},
|
attributes: {'class': config.changeNameButtonCls},
|
||||||
@ -1491,7 +1441,6 @@ define([
|
|||||||
* Alertifyjs
|
* Alertifyjs
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// TODO: remove styleAlerts in all the apps
|
|
||||||
var styleAlerts = common.styleAlerts = function () {};
|
var styleAlerts = common.styleAlerts = function () {};
|
||||||
|
|
||||||
var findCancelButton = common.findCancelButton = function () {
|
var findCancelButton = common.findCancelButton = function () {
|
||||||
|
|||||||
@ -2230,8 +2230,6 @@ define([
|
|||||||
|
|
||||||
var storeObj = Cryptpad.getStore().getProxy && Cryptpad.getStore().getProxy().proxy ? Cryptpad.getStore().getProxy() : undefined;
|
var storeObj = Cryptpad.getStore().getProxy && Cryptpad.getStore().getProxy().proxy ? Cryptpad.getStore().getProxy() : undefined;
|
||||||
|
|
||||||
Cryptpad.styleAlerts();
|
|
||||||
|
|
||||||
if (window.location.hash && window.location.hash === "#iframe") {
|
if (window.location.hash && window.location.hash === "#iframe") {
|
||||||
$iframe.find('body').addClass('iframe');
|
$iframe.find('body').addClass('iframe');
|
||||||
window.location.hash = "";
|
window.location.hash = "";
|
||||||
|
|||||||
@ -29,7 +29,6 @@ define([
|
|||||||
var Ckeditor; // to be initialized later...
|
var Ckeditor; // to be initialized later...
|
||||||
var DiffDom = window.diffDOM;
|
var DiffDom = window.diffDOM;
|
||||||
|
|
||||||
Cryptpad.styleAlerts();
|
|
||||||
Cryptpad.addLoadingScreen();
|
Cryptpad.addLoadingScreen();
|
||||||
|
|
||||||
var stringify = function (obj) {
|
var stringify = function (obj) {
|
||||||
|
|||||||
@ -44,7 +44,6 @@ define([
|
|||||||
};
|
};
|
||||||
|
|
||||||
$(function () {
|
$(function () {
|
||||||
Cryptpad.styleAlerts();
|
|
||||||
Cryptpad.addLoadingScreen();
|
Cryptpad.addLoadingScreen();
|
||||||
|
|
||||||
var ifrw = module.ifrw = $('#pad-iframe')[0].contentWindow;
|
var ifrw = module.ifrw = $('#pad-iframe')[0].contentWindow;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user