mirror of
https://gitlab.easter-eggs.com/ee/ldapsaisie.git
synced 2024-11-01 00:03:18 +01:00
23 lines
761 B
JavaScript
23 lines
761 B
JavaScript
var LSformElement_ssh_key = new Class({
|
|
initialize: function(){
|
|
$$('span.LSformElement_ssh_key_short_display').each(function(span) {
|
|
span.addEvent('click',this.onShortDisplayClick.bind(this,span));
|
|
varLSdefault.addHelpInfo(span,'LSformElement_ssh_key','display');
|
|
}, this);
|
|
},
|
|
|
|
onShortDisplayClick: function(span) {
|
|
var p = span.getParent().getFirst('p.LSformElement_ssh_key_value');
|
|
if (typeof(p)) {
|
|
if (p.getStyle('display')=='none') {
|
|
p.setStyle('display','block');
|
|
}
|
|
else {
|
|
p.setStyle('display',' none');
|
|
}
|
|
}
|
|
}
|
|
});
|
|
window.addEvent(window.ie ? 'load' : 'domready', function() {
|
|
varLSformElement_ssh_key = new LSformElement_ssh_key();
|
|
});
|