20 lines
477 B
JavaScript
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); |