Advertisement
Guest User

Untitled

a guest
Jun 20th, 2019
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. $(`#closingModal-${alertId}`).on('hidden.bs.modal', function (e)
  2. {
  3. //..Load la map pour la localisation du badge d'alerte
  4. loadMapByMacAddress(macAddress)
  5.  
  6.  
  7. //..Inserer dans la BD le nom de l'utilisateur qui a ferme le modal
  8. const alarmId = parseInt(alertId.replace('alerte', ''));
  9. $.ajax({
  10. url: "/Observer/SetStopDynamicAlarm",
  11. type: "POST",
  12. data: {
  13. LastUpdate: dateFermeture.toJSON(),
  14. AlarmId: alarmId
  15. }
  16. });
  17.  
  18.  
  19. $(this).remove();
  20.  
  21.  
  22.  
  23. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement