Increased limit for pasted text length
This commit is contained in:
parent
0c4d984157
commit
a59a57fe70
1 changed files with 1 additions and 1 deletions
|
@ -112,7 +112,7 @@ App.Controls.TagInput = function($underlyingInput) {
|
|||
pastedText = (e.originalEvent || e).clipboardData.getData('text/plain');
|
||||
}
|
||||
|
||||
if (pastedText.length > 200) {
|
||||
if (pastedText.length > 2000) {
|
||||
window.alert('Pasted text is too long.');
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue