Files
performance-art.fr/sites/all/modules/contrib/users/logintoboggan/logintoboggan.js
T
2020-09-23 15:50:29 +02:00

23 lines
499 B
JavaScript

(function ($) {
Drupal.behaviors.LoginToboggan = {
attach: function (context, settings) {
$('#toboggan-login', context).once('toggleboggan_setup', function () {
$(this).hide();
Drupal.logintoboggan_toggleboggan();
});
}
};
Drupal.logintoboggan_toggleboggan = function() {
$("#toboggan-login-link").click(
function () {
$("#toboggan-login").slideToggle("fast");
this.blur();
return false;
}
);
};
})(jQuery);