Skip to content

Instantly share code, notes, and snippets.

View xerestel's full-sized avatar

Xerestel xerestel

View GitHub Profile
{
"editor.multiCursorModifier": "ctrlCmd",
"editor.snippetSuggestions": "top",
"editor.formatOnPaste": true,
"editor.fontFamily" : "Fira Code",
"editor.fontLigatures": true,
"emmet.triggerExpansionOnTab": true,
"php.suggest.basic": false,
"editor.autoIndent": true,
"emmet.includeLanguages" : {
@stefanocudini
stefanocudini / leaflet-reset-zoom-button.js
Created May 13, 2015 13:27
leaflet reset zoom button
(function() {
var control = new L.Control({position:'topright'});
control.onAdd = function(map) {
var azoom = L.DomUtil.create('a','resetzoom');
azoom.innerHTML = "[Reset Zoom]";
L.DomEvent
.disableClickPropagation(azoom)
.addListener(azoom, 'click', function() {
map.setView(map.options.center, map.options.zoom);
@rcotrina94
rcotrina94 / How to use Images as Radio buttons.md
Last active February 22, 2024 13:29
How to use images for radio buttons (input-radio).