Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /** Pouvoir sélectionner du texte et focus sur des éléments (input, textarea, etc) dans Easy Scroll **/
- // Remplacer le bout de code dans scrollbar.min.js :
- if(jQuery.browser.msie){q.get(0).onselectstart=function(){return c}}else{q.get(0).onmousedown=function(a){a.preventDefault()}
- This code disables the ability to select text, I thing it is here to prevent this action when we want a “dragAndDrop” type, but the function is triggered whatever mode we chose.
- // Par :
- if(J=="dragAndDrop"){if(jQuery.browser.msie){q.get(0).onselectstart=function(){return c}}else{q.get(0).onmousedown=function(a){a.preventDefault()}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement