Parcourir la source

remove doubled event listeners

tags/v1.0.0
Rober Torkuhl il y a 11 ans
Parent
révision
0a5ed2b049
1 fichiers modifiés avec 1 ajouts et 0 suppressions
  1. +1
    -0
      pinry/static/js/pinry.js

+ 1
- 0
pinry/static/js/pinry.js Voir le fichier

@@ -51,6 +51,7 @@ $(window).load(function() {
// Delete pin if trash icon clicked
$('.icon-trash').each(function() {
var thisPin = $(this);
$(this).unbind('click');
$(this).click(function() {
$(this).off('click');
var promise = deletePinData($(this).data('id'));


Chargement…
Annuler
Enregistrer