Subversion Repositories eFlore/Applications.cel

Rev

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

Rev 3825 Rev 3826
Line 49... Line 49...
49
	this.regenererMiniature();
49
	this.regenererMiniature();
50
	this.fournirLienIdentiplante();
50
	this.fournirLienIdentiplante();
51
};
51
};
Line 52... Line 52...
52
 
52
 
53
WidgetPhotoPopup.prototype.mettreAJourInfosImage = function() {
53
WidgetPhotoPopup.prototype.mettreAJourInfosImage = function() {
54
	this.item         = this.infos_images[this.urls[this.indexImage]];
54
	this.item          = this.infos_images[this.urls[this.indexImage]];
55
	this.titreImage   = this.item['titre'];
55
	this.titreImage    = this.item['titre'];
56
	this.urlLienEflore = this.item['lien'];
56
	this.urlLienEflore = this.item['lien'];
57
	this.idImage      = this.item['id_photo'];
57
	this.idImage       = this.item['id_photo'];
58
	this.urlThisImage = this.item['url_photo']+'.jpg';
58
	this.urlThisImage  = this.item['url_photo']+'.jpg';
59
	this.obs          = this.item['obs'];
59
	this.obs           = this.item['obs'];
60
	this.nn           = '[nn' + this.obs['nom_sel_nn']+']';
60
	this.nn            = '[nn' + this.obs['nom_sel_nn']+']';
61
	this.urlIP        = this.obs['url_ip'];
61
	this.urlIP         = this.obs['url_ip'];
62
	this.tagsImage    = this.tagsToArray( this.item['tags_photo'] );
62
	this.tagsImage     = this.tagsToArray( this.item['tags_photo'] );
63
	this.tagsObs      = this.tagsToArray( this.obs['tags_obs'] );
63
	this.tagsObs       = this.tagsToArray( this.obs['tags_obs'] );
64
	this.auteur       = this.item['utilisateur']['nom_utilisateur'];
64
	this.auteur        = this.item['utilisateur']['nom_utilisateur'];
65
	this.urlProfil    = '/profil-par-id/'+this.item['utilisateur']['id_utilisateur'];
65
	this.urlProfil     = '/profil-par-id/'+this.item['utilisateur']['id_utilisateur'];
66
	this.date         = this.item['date'];
66
	this.date          = this.item['date'];
Line 67... Line 67...
67
};
67
};
68
 
68