Posts by Ricardo Paixao • 121 points
2 posts
-
2
votes3
answers314
viewsA: Jquery function does not find the Controller when I go up to the server
It happens because you are calling your url with an absolute path (because it starts with /). there are 2 simple ways to avoid this: make your development environment have the same structure as your…
-
0
votes2
answers713
viewsA: Why is the screen size in the browser different from the real one?
This happens because of the pixel ratio of your device. you are probably testing on a mobile phone with pixel ratio 3, so while the screen is 360x592, pixels will behave as 980x1413 In practice, for…