We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Anyone know why the are no spaces allowed in the CustomPanel (Comments) example?
And how to enable them?
The text was updated successfully, but these errors were encountered:
$("textarea").on('keydown', function(e) { var keyCode = e.keyCode || e.which; if (keyCode == 32) { e.preventDefault(); var start = this.selectionStart, end = this.selectionEnd, value = $(this).val(); $(this).val(value.substring(0, start) + " " + value.substring(end)); this.selectionStart = this.selectionEnd = start + 1; } });
insert this function after function finder.request( 'panel:create', {}); in customPanal can fix it
Sorry, something went wrong.
No branches or pull requests
Anyone know why the are no spaces allowed in the CustomPanel (Comments) example?
And how to enable them?
The text was updated successfully, but these errors were encountered: