mirror of
https://github.com/c0de-archive/pelican-mg.git
synced 2025-07-30 13:30:17 +00:00
Adding MG_DISABLE_SUMMARY + ensuring W3C validator-compliant
This commit is contained in:
@@ -4,7 +4,7 @@ $(document).ready(function() {
|
||||
$('.mg-container-social').height($('article').height());
|
||||
$('#mg-panel-social').stick_in_parent({offset_top: 35});
|
||||
|
||||
$('#tipue_search_input').tipuesearch({
|
||||
$('.tipue_search').tipuesearch({
|
||||
'show': 10,
|
||||
'mode': 'json',
|
||||
'showURL': false,
|
||||
|
@@ -97,7 +97,7 @@ http://www.tipue.com/search
|
||||
}
|
||||
if (getURLP('q'))
|
||||
{
|
||||
$('#tipue_search_input').val(getURLP('q'));
|
||||
$('.tipue_search')[0].val(getURLP('q'));
|
||||
getTipueSearch(0, true);
|
||||
}
|
||||
|
||||
@@ -120,7 +120,7 @@ http://www.tipue.com/search
|
||||
var c = 0;
|
||||
found = new Array();
|
||||
|
||||
var d = $('#tipue_search_input').val().toLowerCase();
|
||||
var d = $('.tipue_search')[0].val().toLowerCase();
|
||||
d = $.trim(d);
|
||||
|
||||
if ((d.match("^\"") && d.match("\"$")) || (d.match("^'") && d.match("'$")))
|
||||
|
Reference in New Issue
Block a user