mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-09 03:04:10 -04:00
Only move defines to top if we are doing a define
This commit is contained in:
parent
9c77006ce7
commit
f1d94a6ee7
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user