Empty dialog which can't be closed #1851
-
When Phoenix started I blocked some websites with Little Snitch which looked dicey. As I wanted to quit I got the nice empty dialog which can't be closed by clicking on the close button: Little Snitch: Why is Google Tag Manager needed at all? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The empty dialog is a survey that we show at https://s.surveyplanet.com/jssqbld8 which I see is blocked. It can usually be dismissed and not a critical component, but i'm unsure why it bricked the system. have to test the scenario. We use google tag manager for analytics, but be assured that we have done everything that it takes to anonymize you from google contexts. We load ga in a sandboxed window in desktop apps for anonymizing your profile and preventing google from mapping you to your google account. The window that loads ga is isolated into its own physical browser window context, and does not live in the same window as the code editor, so its impossible that ga have access to what you are doing in phoenix. This is the code that separates the window and this is the code that loads ga. Blocking ga should theoretically not brick the system as its a non essential component. We are also privacy conscious as you are, so we went though all the extra lengths to address your concern as its the same we had too. We primarily develop Phoenix on Linux for this reason, as we don't trust Apple either as much as we don't trust Google or Microsoft with our data. We went so far as to create our own metrics service for this exact reason: https://github.com/aicore/core-analytics-client-lib . But we didn't go that route as we figured out a way to sandbox and anonymize ga, which is the only free alternative out there at our scale. We have specified it in our privacy notice about the same. It can be fully disabled by going to Opening phoenix code again and disabling health reports should fix the above issue for your use case though. Did it answer your queries? |
Beta Was this translation helpful? Give feedback.
The empty dialog is a survey that we show at https://s.surveyplanet.com/jssqbld8 which I see is blocked. It can usually be dismissed and not a critical component, but i'm unsure why it bricked the system. have to test the scenario.
We use google tag manager for analytics, but be assured that we have done everything that it takes to anonymize you from google contexts. We load ga in a sandboxed window in desktop apps for anonymizing your profile and preventing google from mapping you to your google account. The window that loads ga is isolated into its own physical browser window context, and does not live in the same window as the code editor, so its impossible that ga have access to what …