don't make columns with empty names
This commit is contained in:
parent
9fda1dcb76
commit
c76aaac542
@ -300,8 +300,13 @@ define([
|
|||||||
$('#adduser').click(function () {
|
$('#adduser').click(function () {
|
||||||
if (!module.isEditable) { return; }
|
if (!module.isEditable) { return; }
|
||||||
var id = coluid();
|
var id = coluid();
|
||||||
makeUser(module.rt.proxy, id);
|
|
||||||
makeUserEditable(id, true).focus();
|
var msg = "Enter a name"; // TODO translate
|
||||||
|
Cryptpad.prompt(msg, "", function (name) {
|
||||||
|
if (name === null) { return; }
|
||||||
|
makeUser(module.rt.proxy, id, name).val(name);
|
||||||
|
makeUserEditable(id, true).focus();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
$('#addoption').click(function () {
|
$('#addoption').click(function () {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user