Advertisement
rAthus

Pouvoir sélectionner du texte dans Easy Scroll

Oct 3rd, 2013
326
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /** Pouvoir sélectionner du texte et focus sur des éléments (input, textarea, etc) dans Easy Scroll **/
  2.  
  3. // Remplacer le bout de code dans scrollbar.min.js :
  4. if(jQuery.browser.msie){q.get(0).onselectstart=function(){return c}}else{q.get(0).onmousedown=function(a){a.preventDefault()}
  5. 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.
  6.  
  7. // Par :
  8. 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