JS Error with another plug-in
-
When adding new posts, I get the “red box” in the right corner of my WP admin panel.
The error reads as follows:
TypeError: rgb is undefined
eventon_backend_post.js?ver=1
159Line 159 reads: rgb = rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/);
the full function is:
/** convert the HEX color code to RGB and get color decimal value**/
function set_rgb_min_value(color,type){if( type === ‘hex’ ) {
var rgba = /^#?([a-f\d]{2})([a-f\d]{2})([a-f\d]{2})$/i.exec(color);
var rgb = new Array();
rgb[‘r’]= parseInt(rgba[1], 16);
rgb[‘g’]= parseInt(rgba[2], 16);
rgb[‘b’]= parseInt(rgba[3], 16);
}else{
var rgb = color;
}var val = parseInt((rgb[‘r’] + rgb[‘g’] + rgb[‘b’])/3);
$(‘#evcal_event_color_n’).attr({‘value’:val});
}function rgb2hex(rgb){
if(rgb==’1′){
return;
}else{
rgb = rgb.match(/^rgb\((\d+),\s*(\d+),\s*(\d+)\)$/);return “#” +
(“0” + parseInt(rgb[1],10).toString(16)).slice(-2) +
(“0” + parseInt(rgb[2],10).toString(16)).slice(-2) +
(“0” + parseInt(rgb[3],10).toString(16)).slice(-2);
}
}This is a Themeforest WP calendar plug-in called EVENTON. When I disable AG Custom Admin, the error obviously goes away and vice versa – if I disable EVENTON plugin and enable AG Custom Admin, everything is fine.
I’ve contacted the plug-in author for EventON plug-in, and awaiting response, but thought I’d check here first.
AG Custom Admin is definitely one of the best admin plugins out there!!!
- The topic ‘JS Error with another plug-in’ is closed to new replies.