You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
709 B
JavaScript
20 lines
709 B
JavaScript
"use strict";
|
|
|
|
|
|
(function ($) {
|
|
$("document").ready(function () {
|
|
|
|
var templateAddSection = $("#tmpl-elementor-add-section");
|
|
|
|
if (0 < templateAddSection.length) {
|
|
var oldTemplateButton = templateAddSection.html();
|
|
oldTemplateButton = oldTemplateButton.replace(
|
|
'<div class="elementor-add-section-drag-title',
|
|
'<div class="elementor-add-section-area-button rttpg-import-button"><img src="http://postgrid.test/wp-content/plugins/the-post-grid/assets/images/icon-16x16.png" alt=""></div><div class="elementor-add-section-drag-title'
|
|
);
|
|
templateAddSection.html(oldTemplateButton);
|
|
|
|
}
|
|
});
|
|
})(jQuery);
|