Adding MG_DISABLE_SUMMARY + ensuring W3C validator-compliant

This commit is contained in:
Lucas Cimon
2017-08-09 02:11:13 +02:00
parent 33d690f035
commit 1f204bb2d9
8 changed files with 39 additions and 26 deletions

View File

@@ -1,5 +1,9 @@
html, h1 {
font-family: "Oswald", "Helvetica Neue",Helvetica,Arial,sans-serif; }
html {
font: 400 14px / 20px "Oswald", "Helvetica Neue",Helvetica,Arial,sans-serif; }
font-weight: 400;
font-size: 14px;
line-height: 20px; }
a {
color: #33b5e5; }

View File

@@ -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,

View File

@@ -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("'$")))