garchive-wp-theme/scripts/main.js
Aaron Yarborough 613e0d376e Fix search
2019-01-15 19:49:22 +00:00

63 lines
No EOL
1.8 KiB
JavaScript

(function($) {
var postGrid,
search,
searchbox;
$(document).ready(function() {
postGrid = $('#postGrid');
search = $('#search');
searchbox = $('#searchBox')
initPostGrid(postGrid, '.gar-post-box');
initSearch('a[href="#search"]', search, searchbox);
initTinyMCE('.rte');
});
function initSearch(toggleSelector, search, searchbox) {
$(toggleSelector).click(function(e) {
e.preventDefault();
search.toggleClass('open');
if (search.hasClass('open')) {
searchbox.focus();
}
});
}
function initPostGrid(grid, itemSelector) {
// Don't init masonry if there are no items
if (!$(itemSelector).length)
return;
grid.masonry({
itemSelector: itemSelector,
percentPosition: true,
gutter: 20
});
}
function initTinyMCE(editorSelector) {
if (typeof tinymce === 'undefined')
return;
tinymce.init({
selector: editorSelector,
menu: {},
style_formats: [
{title: 'Heading 2', format: 'h2'},
{title: 'Heading 3', format: 'h3'},
{title: 'Heading 4', format: 'h4'},
{title: 'Heading 5', format: 'h5'},
{title: 'Heading 6', format: 'h6'},
{title: 'Normal', block: 'p'}
],
toolbar: 'undo redo | styleselect | bold italic | link | numlist bullist',
plugins: ['lists', 'link'],
setup: function (editor) {
editor.on('change', function () {
editor.save();
});
}
});
}
})(jQuery);