pelican-mg/static/js/main-search.js

16 lines
405 B
JavaScript
Raw Normal View History

2015-11-07 19:43:39 +00:00
'use strict';
$(document).ready(function() {
$('.mg-container-social').height($('article').height());
$('#mg-panel-social').stick_in_parent({offset_top: 35});
$('.tipue_search').tipuesearch({
2015-11-07 19:43:39 +00:00
'show': 10,
'mode': 'json',
'showURL': false,
'descriptiveWords': 75,
'highlightEveryTerm': true,
'contentLocation': './tipue_search.json'
2015-11-07 19:43:39 +00:00
});
});