Can't make Selections Can't make Selections
 

News:

CPG Release 1.6.27
change DB IP storage fields to accommodate IPv6 addresses
remove use of E_STRICT (PHP 8.4 deprecated)
update README to reflect new website
align code with new .com CPG website
correct deprecation in captcha

Main Menu

Can't make Selections

Started by jdbaranger, October 19, 2003, 06:05:51 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

jdbaranger

left-click text selections are disable, and i don't know how to activate this function.

Thanks

Jean-Denis
Jean-Denis

Joachim Müller

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