mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-19 08:39:06 +01:00
7c37c65366
rafraichissement. - base.css : netoyage - LSform.js : -> initializeLSform_AddAndRemoveBtns() : Modularisation des ajouts d'évenements -> Ajout du concept de modules permettant l'initialisation JS à l'ajout d'un field vide d'un type avancé - Ajout de types de champs de formulaire : -> LSformElement_url : Un liens web (URL) -> LSformElement_rss : Un lien RSS - class.LSformElement.php : -> ajout de la méthode getTitle() : Texte descriptif du champ - LSdefault.js : Correction de la déclaration de la variable LSdebug_active - modify.php : Modification du titre des pages
34 lines
965 B
JavaScript
34 lines
965 B
JavaScript
var LSformElement_rss = new Class({
|
|
initialize: function(){
|
|
this.initialiseLSformElement_rss();
|
|
if (typeof(varLSform) != "undefined") {
|
|
varLSform.addModule("LSformElement_rss",this);
|
|
}
|
|
},
|
|
|
|
initialiseLSformElement_rss: function(el) {
|
|
if (typeof(el) == 'undefined') {
|
|
el = document;
|
|
}
|
|
el.getElements('img.LSformElement_rss_btn').each(function(btn) {
|
|
btn.addEvent('click',this.onBtnClick.bind(this,btn));
|
|
}, this);
|
|
},
|
|
|
|
reinitialize: function(el) {
|
|
this.initialiseLSformElement_rss(el);
|
|
},
|
|
|
|
onBtnClick: function(btn) {
|
|
var href = btn.getParent().getFirst().href;
|
|
if (typeof(href)=="undefined") {
|
|
href = btn.getParent().getFirst().value;
|
|
}
|
|
if (href!="") {
|
|
window.open(href,'_blank');
|
|
}
|
|
}
|
|
});
|
|
window.addEvent(window.ie ? 'load' : 'domready', function() {
|
|
varLSformElement_rss = new LSformElement_rss();
|
|
});
|