forum.coppermine-gallery.net

Support => Older/other versions => cpg1.2 Standalone Support => Topic started by: jdbaranger on October 19, 2003, 06:05:51 pm

Title: Can't make Selections
Post by: jdbaranger on October 19, 2003, 06:05:51 pm
left-click text selections are disable, and i don't know how to activate this function.

Thanks

Jean-Denis
Title: Can't make Selections
Post by: Joachim Müller on October 19, 2003, 09:42:23 pm
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 find
Code: [Select]
function disableselect(e){
return false
}

function reEnable(){
return true
}
and replace it with
Code: [Select]
function disableselect(e){
//return false
}

function reEnable(){
//return true
}
GauGau