Posts by Tayrone Carneiro Rockenbach • 91 points
2 posts
-
0
votes2
answers126
viewsQ: How do I limit the use of a web application so that it can be used by Chrome?
My application is based on Java and made in Genexus. I want it to be impossible to use my application outside of Google Chrome. You can implement this limitation? I did not find in my research this…
-
8
votes2
answers169
viewsQ: Doubt in the statement between Arrow expression and function expression of an event
I have the following code snippet: self.addEventListener('push', event => {"code here"}); My question is... this writing format is equal to: self.addEventListener('push', function(event) {"code…