Last active
July 7, 2020 15:50
-
-
Save AleksandrChukhray/89518afba06be54cf0d1abe90308775c to your computer and use it in GitHub Desktop.
Is draggeble
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
| function isDraggable() { | |
| var div = document.createElement('div'); | |
| return ('draggable' in div) || ('ondragstart' in div && 'ondrop' in div) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment