Subversion Repositories eFlore/Applications.cel

Rev

Rev 3987 | Rev 3989 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3987 Rev 3988
Line 18... Line 18...
18
	}
18
	}
19
	this.protocole = null;
19
	this.protocole = null;
20
	this.voteId = null;
20
	this.voteId = null;
21
	this.votes = null;
21
	this.votes = null;
22
	this.mettreAJourInfosImage();
22
	this.mettreAJourInfosImage();
23
	// console.log(proprietes)
-
 
24
}
23
}
Line 25... Line 24...
25
 
24
 
Line 26... Line 25...
26
WidgetPhotoPopup.prototype = new WidgetPhotoCommun();
25
WidgetPhotoPopup.prototype = new WidgetPhotoCommun();
Line 242... Line 241...
242
					console.log('tag : ' + motCleClique + ' ajouté');
241
					console.log('tag : ' + motCleClique + ' ajouté');
243
					lthis.item['tags_pf'].push({'id_mot_cle' : tagId['id'][0], 'mot_cle' : motCleClique})
242
					lthis.item['tags_pf'].push({'id_mot_cle' : tagId['id'][0], 'mot_cle' : motCleClique})
244
				}
243
				}
245
			});
244
			});
246
		}
245
		}
247
		//TODO post vers le del
-
 
248
	});
246
	});
249
	/* //@TODO est-ce qu'on garde cette croix?
247
	/* //@TODO est-ce qu'on garde cette croix?
250
	$( '#bloc-tags' ).on( 'click', '.custom-tag.actif .fermer', function( event ) {
248
	$( '#bloc-tags' ).on( 'click', '.custom-tag.actif .fermer', function( event ) {
251
		event.preventDefault();
249
		event.preventDefault();
252
		//			Supprimer un custom-tag
250
		//			Supprimer un custom-tag
Line 875... Line 873...
875
	const lthis = this;
873
	const lthis = this;
Line 876... Line 874...
876
 
874
 
877
	var xhttp = new XMLHttpRequest();
875
	var xhttp = new XMLHttpRequest();
878
	xhttp.onreadystatechange = function() {
876
	xhttp.onreadystatechange = function() {
-
 
877
		if (this.readyState == 4 && this.status == 200) {
-
 
878
			let votesUrl = lthis.urlServiceDel + 'images/' + lthis.idImage + '/votes';
-
 
879
			// Récupération des données et maj de l'affichage
-
 
880
			lthis.envoyerVersService('GET', votesUrl, null, null, function (erreur, data) {
-
 
881
				if (erreur) {
-
 
882
					console.error("Erreur lors de la requête :", erreur);
-
 
883
				} else {
-
 
884
					lthis.item["votes"] = Object.values(data['resultats']);
879
		if (this.readyState == 4 && this.status == 200) {
885
					lthis.getVotes(protocole)
-
 
886
				}
880
 
887
			});
881
			console.log('vote envoyé')
888
			console.log('vote envoyé')
882
		}
889
		}
Line 883... Line 890...
883
	};
890
	};