Posts by Rodrigo Nishino • 121 points
5 posts
-
0
votes1
answer13
viewsA: How do I put a password exchange method in my login system using ajax?
You have to make a table to save the password exchange requests this table would be something like this change id user_id secret code date when requesting the password exchange the system generates…
-
0
votes2
answers269
viewsA: Problem with AJAX request return
In the jquery documentation it is described that request caching is enabled by default EXCEPT for script and jsonp types' http://api.jquery.com/jquery.ajax/ Adding cache:false should solve the…
-
3
votes2
answers925
viewsA: $window.location.Reload()
After much research with Fred on chat we were able to conclude that this is a bug of the angular-leaflet-Directive directive The problem is described in this report:…
-
3
votes2
answers1156
viewsA: How to do slow zoom/zoom effect?
I use CSS Transform for this purpose .div-com-bg{ width: 200px; height: 200px; background-image: url(https://placehold.it/200x200); background-size: 100%; background-position:center center;…
-
3
votes2
answers925
viewsA: $window.location.Reload()
You are using angular1? It looks like the element is being initialized for the first time with ng-init and when the route changes the controller You have considered porting these values that are…