This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Google Search Maps Fix | |
// @namespace http://tampermonkey.net/ | |
// @version 2024-06-19 | |
// @description Bring Google maps button back | |
// @author Daan Grashoff / Delivator / meGAmeS1 | |
// @match https://www.google.com/search* | |
// @match https://www.google.fr/search* | |
// @include https://www.google.tld/search* | |
// @grant none |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% get_current_language as LANGUAGE_CODE %} | |
<script type="text/javascript"> | |
$(function () { | |
$.fn.datetimepicker.defaults.locale = moment.locale('{{ LANGUAGE_CODE }}'); | |
}); | |
</script> |