This repository was archived by the owner on Jan 31, 2019. It is now read-only.
added input, cut, and paste to textarea messages#53
Open
kendroberts wants to merge 1 commit intomozilla:masterfrom
Open
added input, cut, and paste to textarea messages#53kendroberts wants to merge 1 commit intomozilla:masterfrom
kendroberts wants to merge 1 commit intomozilla:masterfrom
Conversation
Was using keyup to know when to update the "how many characters do you have" display. Keyup misses context menu cut/paste/undo/redo and drag & drop changes to the textarea contents. I added input which workes in new browsers to handle all of these. keyup, cut, and paste works in most other browser as fallback. http://jsfiddle.net/M2qsa/222/ I had to read up on all this myself here: http://whattheheadsaid.com/2010/09/effectively-detecting-user-input-in-javascript (they do even more which I don't understand so don't use)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Was using keyup to know when to update the "how many characters do you
have" display. Keyup misses context menu cut/paste/undo/redo and drag &
drop changes to the textarea contents. I added input which works in
new browsers to handle all of these. keyup, cut, and paste works in
most other browser as fallback.
http://jsfiddle.net/M2qsa/222/
I had to read up on all this myself here:
http://whattheheadsaid.com/2010/09/effectively-detecting-user-input-in-javascript
(they do even more which I don't understand so don't use)