Remove unnecessary TODOs

This commit is contained in:
yflory
2017-03-27 11:53:13 +02:00
parent d92a875ce5
commit 71c59d7ae2
5 changed files with 2 additions and 10 deletions

View File

@@ -715,7 +715,6 @@ define([
var second = function (CM) {
Cryptpad.ready(function (err, env) {
// TODO handle error
andThen(CM);
});
Cryptpad.onError(function (info) {
@@ -728,7 +727,6 @@ define([
var first = function () {
if (ifrw.CodeMirror) {
// it exists, call your continuation
//andThen(ifrw.CodeMirror);
second(ifrw.CodeMirror);
} else {
console.log("CodeMirror was not defined. Trying again in %sms", interval);

View File

@@ -1403,7 +1403,7 @@ define([
onElementClick(e, $element);
});
$element.contextmenu(openDefaultContextMenu);
$element.data('context', $defaultContextMenu); // TODO: hide the "delete" link in that context menu
$element.data('context', $defaultContextMenu);
$container.append($element);
});
};

View File

@@ -734,7 +734,6 @@ define([
console.log("Aborting the session!");
// stop the user from continuing to edit
setEditable(false);
// TODO inform them that the session was torn down
toolbar.failed();
Cryptpad.alert(Messages.common_connectionLost, undefined, true);
};
@@ -797,7 +796,6 @@ define([
var interval = 100;
var second = function (Ckeditor) {
Cryptpad.ready(function (err, env) {
// TODO handle error
andThen(Ckeditor);
});
Cryptpad.onError(function (info) {
@@ -810,7 +808,6 @@ define([
var first = function () {
Ckeditor = ifrw.CKEDITOR;
if (Ckeditor) {
//andThen(Ckeditor);
// mobile configuration
Ckeditor.config.toolbarCanCollapse = true;
Ckeditor.config.height = '72vh';

View File

@@ -500,7 +500,6 @@ define([
};
// special UI elements
//var $title = $('#title').attr('placeholder', Messages.poll_titleHint || 'title'); TODO
var $description = $('#description').attr('placeholder', Messages.poll_descriptionHint || 'description');
var ready = function (info, userid, readOnly) {

View File

@@ -646,7 +646,7 @@ define([
'style': 'font-family: FontAwesome; font-weight: bold; color: #fff; background: #000;',
title: Messages.colorButtonTitle
});
var $testColor = $('<input>', { type: 'color', value: '!' });
var $testColor = $('<input>', { type: 'color', value: '!' });
var $check = $pad.contents().find("#colorPicker_check");
if ($testColor.attr('type') !== "color" || $testColor.val() === '!') { return; }
$back.on('click', function() {
@@ -908,7 +908,6 @@ define([
var interval = 100;
var second = function (CM) {
var second = function (CM) {
Cryptpad.ready(function (err, env) {
andThen(CM);
@@ -921,7 +920,6 @@ define([
};
var first = function () {
if (ifrw.CodeMirror) {
if (ifrw.CodeMirror) {
// it exists, call your continuation
second(ifrw.CodeMirror);