20 lines
569 B
JavaScript
20 lines
569 B
JavaScript
// Generated by CoffeeScript 1.12.6
|
|
(function() {
|
|
"use strict";
|
|
App.AllowParticipation = {
|
|
initialize: function() {
|
|
return $(document).on({
|
|
"mouseenter focus": function() {
|
|
$(this).find(".js-participation-not-allowed").show();
|
|
return $(this).find(".js-participation-allowed").hide();
|
|
},
|
|
mouseleave: function() {
|
|
$(this).find(".js-participation-not-allowed").hide();
|
|
return $(this).find(".js-participation-allowed").show();
|
|
}
|
|
}, ".js-participation");
|
|
}
|
|
};
|
|
|
|
}).call(this);
|