﻿BenefulMap.ModalFullSizePhoto = BenefulMap.Modal.extend({
	init: function(modalTitle, modalElements, modalOptions, snippetPath, params) {
		this._super( modalTitle, modalElements, modalOptions, snippetPath, params);
	},
	addModalTargetListener: function() {
		var self = this;
		$(this.targetEl).live('click', function(event) {
			event.preventDefault();
			self.setFiredTarget(this);
			var params = {};
			params.id = $(this).attr("rel");
			self.setParams(params);
			self.populate();
		});
	}
});