You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
645 B
21 lines
645 B
/* Load jQuery. |
|
--------------------------*/ |
|
jQuery(document).ready(function ($) { |
|
// Homepage blocks |
|
$(".region-content-home-top .block, .region-content-home-bottom .block").wrapInner( '<div class="container"></div>' ); |
|
|
|
/* $('.accordion_block').accordionjs({ |
|
activeIndex: false, |
|
}); |
|
*/ |
|
$(".views-field-search-api-rendered-item span").each(function() { |
|
var html = $(this).html(); |
|
html = html.replace(". . ", ". "); |
|
$(this).html(html); |
|
}); |
|
//$('.views-field-search-api-rendered-item:contains(". . ")').text('. '); |
|
// $('p:contains("dogsss")').text('dollsss'); |
|
|
|
/* End document |
|
--------------------------*/ |
|
});
|
|
|