In command line of directory desired:
virtualenv venv
virtualenv venv --python=python3
$(document).ready(function() { | |
//custom scripting goes here | |
// map setup | |
L.Browser.webkit3d = false; | |
var map; | |
map = L.map('map').setView([32.8935772, -96.8870228],10); |
/////////////////////////////////////////////////////// | |
// EXPORT JSON to S3 /////////////////////////// | |
//////////////////////////////////////////// | |
function onOpen() { | |
var ss = SpreadsheetApp.getActiveSpreadsheet(); | |
var menuEntries = [ | |
{name: "Publish to DMN data store", functionName: "exportS3"}, | |
]; | |
ss.addMenu("Publish Data", menuEntries); |
// this is a starter template for a responsive d3 chart | |
// it assumes you're using jquery, and that the div your chart | |
// will live in has an id of "chart" | |
$(document).ready(function() { | |
var windowWidth = $(window).width(); | |
//variable setup: chartcontainer and it's width |
.dropList .dropHed { | |
cursor: pointer; | |
} | |
.dropList .dropItem { | |
background-color: rgb(240,240,240); | |
border-radius: 2px; | |
margin-bottom: .6rem; | |
padding: 1rem; | |
} | |
.dropList .dropHed span.cardinal { |
$.ajax({ | |
dataType: "json", | |
url: "<url for json here>", | |
success: <function to run when request is done ex: filterdata>, | |
cache: false | |
}); |
.video-block { | |
width: 55%; | |
margin: 4.8rem 0; | |
font-size: 15px; | |
img { | |
max-width: 170px !important; | |
max-height: 18px !important; | |
} | |
} | |
.video-wrapper { |