Advertisement
Guest User

Untitled

a guest
Jun 22nd, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. if (this.qntDeLogs > 0) {
  2. for (var v in val) {
  3. this.providerAPI.insertPiqueteLog(val[v].heightLevel)
  4. .then(data => {
  5. console.log(data);
  6. });;
  7. val.splice(v, 1);
  8. array.splice(v, 1)
  9. this.qntDeLogs = this.qntDeLogs - 1
  10.  
  11. this.navCtrl.setRoot(this.navCtrl.getActive().component);
  12. }
  13. this.storage.set('piquetesLog', array)
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement