You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the production build there are 2 .js files that gets generated.
One of them is something like app* .
In this file there is a line
if(a["settings"].randomizeBG){var e=m();return e[Math.floor(Math.random()*e.length)]
which after prettifying looks like
if(a["settings"].randomizeBG)
{
var e=m(blurred);
return e[Math.floor(Math.random()*e.length)]
....
Earlier my theme was constantly getting crashed because it was throwing an error
I recently found a bug in your production code.
I don't think it is an issue rather than a bug
In the production build there are 2 .js files that gets generated.
One of them is something like app* .
In this file there is a line
if(a["settings"].randomizeBG){var e=m();return e[Math.floor(Math.random()*e.length)]
which after prettifying looks like
if(a["settings"].randomizeBG)
{
var e=m(blurred);
return e[Math.floor(Math.random()*e.length)]
....
Earlier my theme was constantly getting crashed because it was throwing an error
CONSOLE ERROR Reference Error: ReferenceError: Can't find variable: blurred
and this would constantly crash my theme
Removing this "blurred" make it run like a charm.
just need to do
"var e = m();"
I didn't understand the code fully though.
Here is the following error
Thank You for making such an awesome once again.
Cheers man 👍 :
The text was updated successfully, but these errors were encountered: