Posts by Dan Jesus • 21 points
2 posts
-
1
votes1
answer375
viewsA: How to finish a loading screen after running Presets in Angular?
You can use the all $q method, which is the service that provides prefixes at angular 1. As follows: LoadingService.show(); function insertResult(result) { MyService.insert(result); } var promise1 =…
-
1
votes1
answer351
viewsA: PHP - Fire another script into a script without aborting the current one
If you are running this script in CGI mode(* The Locaweb only allows the execution of these methods in CGI mode), you can use the exec function of php I couldn’t find anything in Locaweb about the…