left-click text selections are disable, and i don't know how to activate this function.
Thanks
Jean-Denis
comes with the no-right-click feature that can be turned on/off in admin config. If you want to get rid of the "no left-click marking", edit script.js and findfunction disableselect(e){
return false
}
function reEnable(){
return true
}
and replace it withfunction disableselect(e){
//return false
}
function reEnable(){
//return true
}
GauGau