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
{ | |
"meta": { | |
"theme": "elegant" | |
}, | |
"basics": { | |
"name": "Ian Channing", | |
"label": "Lead Software Developer", | |
"image": "", | |
"email": "[email protected]", | |
"phone": "+32 491 482 747", |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Minimal River Reader</title> | |
<script src="http://fargo.io/code/jquery-1.9.1.min.js"></script> | |
</head> | |
<body> | |
<script> | |
var theRiver; | |
function onGetRiverStream (updatedFeeds) { |
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
$(function() { | |
var form = $("form"); | |
var button = form.find("button[type=submit]"); | |
var input = form.find("input[name=postcode]"); | |
var output = form.find("output[name=location]"); | |
var map = L.mapbox.map("map", "hubbox.map-u557d78b").setView([54, 0], 6); | |
var failed = function(data) { | |
button.html("Failed"); |