Only move defines to top if we are doing a define

This commit is contained in:
Kovid Goyal 2020-04-16 10:58:56 +05:30
parent 9c77006ce7
commit f1d94a6ee7
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -11,14 +11,14 @@
function fix_google_markup() {
var cc = document.getElementById('center_col');
cc.style.marginLeft = '0';
cc.style.position = 'absolute';
cc.style.top = '0';
cc.style.left = '0';
cc = document.getElementById('cnt');
if (cc) cc.style.paddingTop = '0';
var params = new URLSearchParams(document.location.search.substring(1));
var q = params.get('q');
if (q && q.startsWith('define:')) {
cc.style.position = 'absolute';
cc.style.top = '0';
cc.style.left = '0';
var remove = ['sfcnt', 'top_nav', 'before-appbar', 'appbar', 'searchform', 'easter-egg'];
remove.forEach(function(id) {
var elem = document.getElementById(id);