You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$(event.target).prop('contenteditable') == 'true' will fail on jQuery prior to 1.6, it should be written as $(event.target).attr('contenteditable') == 'true' in older versions.
$(event.target).prop('contenteditable') == 'true'
will fail on jQuery prior to 1.6, it should be written as$(event.target).attr('contenteditable') == 'true'
in older versions.I added a note in the source code about it: https://github.com/tzuryby/jquery.hotkeys/blob/321e02b98be973d1ea09eb97ceb921411ffb3415/jquery.hotkeys.js#L51
Even thought about adding some conditional check for the version but decided not to.
Anyway, just documenting it here in case anyone is having this problem (main reason why I updated the test files to use jQuery 1.7.1)
cheers.
The text was updated successfully, but these errors were encountered: