Posts by Rafael Zulianeli • 1 point
5 posts
-
0
votes1
answer238
viewsA: Losing ngx-Translate translation while building with --Prod
Below is an image of how the folder structure was made for translation. As described in the Mports of the question, I use the Globalization to pick up the preferred language of the device and in…
-
0
votes1
answer238
viewsQ: Losing ngx-Translate translation while building with --Prod
// translate import { Globalization } from '@ionic-native/globalization'; import { TranslateModule, TranslateLoader } from '@ngx-translate/core'; import { TranslateHttpLoader } from…
-
0
votes3
answers227
viewsA: How to queue for Promises in Javascript?
Hello thanks so much for the help... With the help of this repository, (angular-Queue) i made an implementation of a queue that does what I was needing if you want to take a look at the example of…
-
0
votes3
answers227
viewsQ: How to queue for Promises in Javascript?
I would like to know the best way to make a row of Promises in Javascript, so that the incoming Promise only runs after the previous Promise resolution. Example: var queue = [Promise1, Promise2];…
-
0
votes1
answer95
viewsQ: How to receive a directive within a component in Angularjs
This photo exemplifies what I wish to do: Link to TOTVS Angularjs documentation This is the excerpt from the form where I’m trying to do this. I’m getting the components required, number and…