blob: a62bb57e29a4b92e3c20c63a9f35476fabb702c7 [file] [log] [blame]
/**
* Copyright (c) 2018 Eclipse Foundation and others.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* Contributors:
* Eric Poirier (Eclipse Foundation) - initial API and implementation
*
* SPDX-License-Identifier: EPL-2.0
*/
$(function() {
$('.featured-new-noteworthy-item').hover(function() {
$(this).find(".featured-new-noteworthy-read-more").fadeIn(100);
}, function() {
$(this).find(".featured-new-noteworthy-read-more").fadeOut(100);
});
$('.featured-new-noteworthy-read-more .feather-x').click(function() {
$(this).parent().fadeOut(100);
});
});