hahahaha.., is not showing up, sry for my „gaming” vocabularycYbercOsmOnauT wrote:Mate.. I think you don't know the difference between popping and pooping.![]()
On topic: I will check it with AdBlock Plus and hopefully see what this addon is blocking.
Ok, can you make an extension that swich the them colors? you know that mod wich was changing the colors by click? i cant remember the name of the modcYbercOsmOnauT wrote:Ahh.. I guess I know whats happening. It's not that AdBlock Pro is blocking something but injecting its Stylesheet into the source of the page and that breaks my script.
Give me some minutes/hours. I will fix it between my work.
works now, thankscYbercOsmOnauT wrote:1.7.3 is commited... try it again with that one
Code: Select all
'fixUrlPathes': function (_css) {
var _url, _i;
---------------------->> if (-1 === _css.indexOf('url')) {
// no url in the CSS String, there is nothing to do
return _css;
}
_tmp = _css.replace(/url\s*\(\s*["']?([^)]+?)["']?\s*\)/g, function (matching, group1) {
return ('url("' + _internalMethods.css.realpath(_cssBase + group1) + '")');
});
return _tmp;