Files
nairobi/app/assets/javascripts/allow_participation.js
Senén Rodero Rodríguez cda545f2fc Remove uneeded lines
There is no elements with class `js-participation-allowed` within all
application code.
2020-08-04 20:32:14 +02:00

16 lines
391 B
JavaScript

(function() {
"use strict";
App.AllowParticipation = {
initialize: function() {
$(document).on({
"mouseenter focus": function() {
$(this).find(".js-participation-not-allowed").show();
},
mouseleave: function() {
$(this).find(".js-participation-not-allowed").hide();
}
}, ".js-participation");
}
};
}).call(this);