-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.js
More file actions
10 lines (10 loc) · 1.13 KB
/
Copy pathaction.js
File metadata and controls
10 lines (10 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
$(document).ready(function () {
// Replace the doodle with logo on homepage
$(".o3j99:nth-child(2)").html(
'<style data-iml="1660571331865">.LS8OJ {display: flex;flex-direction: column;align-items: center}.k1zIA {height: 100%;margin-top: auto}</style><div class="k1zIA rSk4se" doodle-blocker><style>.rSk4se {max-height: 92px;position: relative}.lnXdpd {max-height: 100%;max-width: 100%;object-fit: contain;object-position: center bottom;width: auto}</style><img class="lnXdpd" alt="Google" height="92"src="/images/branding/googlelogo/2x/googlelogo_color_272x92dp.png"srcset="/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png 1x, /images/branding/googlelogo/2x/googlelogo_color_272x92dp.png 2x"width="272" data-atf="1" data-frt="0"></div>'
);
// Replace the doodle with logo in search results pages
$(".logo").html(
'<a href="https://www.google.com.my/webhp?hl=ms&sa=X&ved=0ahUKEwj2p9bL69X5AhXyg2MGHafHBpoQPAgI" title="Pergi ke Laman Utama Google" id="logo" data-hveid="8"><img src="/images/branding/googlelogo/2x/googlelogo_color_92x30dp.png" alt="Google" height="30" width="92" data-atf="1" data-frt="0"></a>'
);
});