jam-cloud/app/assets/javascripts/homeScreen.js

20 lines
477 B
JavaScript

(function(context,$) {
context.JK = context.JK || {};
context.JK.HomeScreen = function(app) {
function events() {
$('.homecard').on('mouseenter', function() {
$(this).addClass('hover');
});
$('.homecard').on('mouseleave', function() {
$(this).removeClass('hover');
});
}
this.initialize = function() {
events();
};
};
})(window,jQuery);