Increased limit for pasted text length

This commit is contained in:
Marcin Kurczewski 2015-02-13 08:35:08 +01:00
parent 0c4d984157
commit a59a57fe70

View file

@ -112,7 +112,7 @@ App.Controls.TagInput = function($underlyingInput) {
pastedText = (e.originalEvent || e).clipboardData.getData('text/plain'); pastedText = (e.originalEvent || e).clipboardData.getData('text/plain');
} }
if (pastedText.length > 200) { if (pastedText.length > 2000) {
window.alert('Pasted text is too long.'); window.alert('Pasted text is too long.');
return; return;
} }