Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
jaytar1856yFor the most part I think edge is underrated, pretty fast and not so resource hungry. But this... I have no words
-
devTea240886yHaven’t heard of this issue
@trode some windows 10 user actually use edge now as the default because ms keeps on digging their dicks on them -
@trode Fun fact:
Just because YOU don't use edge doesn't mean others don't use it.
And when you have a job, you kinda have to make the project to the specifications of the client. -
I've had race conditions manifest this way. The processing delay from having Dev tools open causes side effects.
-
xonya51326yOh god... This reminds me an issue I had with IE8...
The "console" object was undefined before opening the console.
So, calling a console.log() with the console closed produced an invisible error.
The solution was wrapping all the console.log() calls in this way:
if (typeof console !== 'undefined') {
console.log();
}
I hope you are experimenting a different issue, because it would be embarrassing they are carrying on this error from IE8 era. -
jaytar1856yWe are talking about a simple drag and drop via jquery. Nothing asynchronous, no ajax calls.
-
@jaytar That's living in the edge: Heisenbug repaired by THW good ol' turning on and off again.
-
yatiac06yI had a similar issue a few years ago. I was working with knockout and was trying to synchronise some components, when I had the console open for some reason the script ran slow enough to allow them to initialise and sync
Related Rants
What the hecking heck. My Javascript doesn't work in Edge EXCEPT for when I open - only open - the developer console, then everything works fine. And it is hard to debug stuff without developer tools, especially since Edge doesn't note console.info when the developer console is closed.
(No, I'm not even using external scripts)
rant
edge
wtf