Created
May 2, 2014 09:30
-
-
Save ESeufert/fccee10fee47a76810f8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
$(document).ready(function() { | |
var data = getData(); | |
buildConsole(data); | |
resetCharts(data); | |
$('#country-selector').change(function() { | |
var metrics = cloneData(data); | |
$('#country-selector').stop().css("background-color", "#FFFF9C").animate({ backgroundColor: "#CCFFE6"}, 1500); | |
resetCharts(metrics); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment