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
var map = L.map('map').setView([29.7628, - 95.3831], 15); | |
var openStreet = L.tileLayer('http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(map); | |
var baseLayers = { | |
"OpenStreetMap": openStreet | |
}; | |
var overlays = {}; | |
function project(point) { | |
var latlng = new L.LatLng(point[1], point[0]); | |
var layerPoint = map.latLngToLayerPoint(latlng); |
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
{ | |
"date" : "Tue May 30 13:03:06 2017", | |
"mirror_meta_md5" : "59f136b74cf6553ac2db36dc89b53ffe" | |
} |
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
sub _build_default_tcpa_acknowledgment_copy_obj { | |
my $self = shift; | |
+ | |
return unless $self->tcpa_placement; | |
+ | |
+ my $tcpa_placement = $self->tcpa_placement; | |
+ | |
+ my $placements_16969 = set(qw( | |
+ non_partner_college | |
+ programs |
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
license: mit |
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
const findLastWord = (editor) => { | |
console.log(editor.selection); | |
Transforms.move(editor, { unit: 'word', reverse: true }) | |
console.log(editor.selection); | |
const selected = Editor.string(editor, editor.selection); | |
console.log(selected); | |
Transforms.move(editor, {unit: 'word'}); | |
editor.insertText(' '); | |
}; | |
// ... |
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
const findLastWord = (editor) => { | |
console.log(editor.selection); | |
Transforms.move(editor, { distance: 1, unit: 'word', reverse: true, edge: 'start' }) | |
console.log(editor.selection); | |
const selected = Editor.string(editor, editor.selection); | |
console.log(selected); | |
Transforms.move(editor, {distance: 2, unit: 'word', edge: 'start'}); | |
editor.insertText(' '); | |
}; |
OlderNewer