Arc-hive-omeka-theme/asset/js/expand-site-list-item.js

8 lines
165 B
JavaScript
Raw Normal View History

2021-05-08 14:09:02 +02:00
(function($) {
$(document).ready(function() {
$('._expandable_site_item').click(function() {
alert('expand');
});
});
})(jQuery)