Michele Marcucci

Results 17 comments of Michele Marcucci

Hey thanks! I solved with this https://github.com/ncuillery/angular-breadcrumb/issues/65 Giving a templateUrl with the "translate" filter included.

@envision @homerjam what AngularJS version do you have? I have the same issue with Angular 1.5.5

Those aren't Italian VAT numbers but Italian personal tax code (called in Italian "Codice fiscale"). This lib checks only against VAT numbers (for companies) not personal tax code.

Ah I looked at dev console now and yes, requests are going all in 504 timeout: https://horizon-testnet.stellar.org/accounts/GAK75IL4FVS7BXESHKBXQQ3G6PCXDQLCPZ5S5L652OBCOR4NUYRI5HWM/effects?cursor=44480588282859521-2 > Error 504 Ray ID: 44577be4cb9242f2 • 2018-08-05 07:17:26 UTC > > Gateway...

This doesn't work never, also if you are hashing and you are connected you can't Ctrl-C Ubuntu 16.04 latest Github commit

This worked for me too, just added: ``` if (event.originalEvent.target.localName == 'textarea' || event.originalEvent.target.localName == 'input') { return true; } ``` I think this should be placed inside the original...

You should use the `schedule` function: ``` agenda.on('fail', (err, job) => { if (isErrorTemporary(err)) { // checking that the error is a network error for instance job.schedule(moment().add(15000, 'milliseconds').toDate()); // retry...

Fail event is called only if your Agenda initialization failed. So I can't understand the problem.