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
| var stateNames = { | |
| "AL":"Alabama", | |
| "AK":"Alaska", | |
| "AZ":"Arizona", | |
| "AR":"Arkansas", | |
| "CA":"California", | |
| "CO":"Colorado", | |
| "CT":"Connecticut", | |
| "DE":"Delaware", | |
| "DC":"District of Columbia", |
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
| <script id="drone-templ" type="text/jst"> | |
| <div id="drones-source">According to: <%=source%></div> | |
| <div id="drones-claim"><%=claim%></div> | |
| <div id="drones-outlet">– <%=outlet%></div> | |
| </script> | |
| <script type="text/javascript"> | |
| $(document).ready(function() { |
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
| require 'rubygems' | |
| require 'fastercsv' | |
| data = [] | |
| html = <<-HTML | |
| HTML | |
| FasterCSV.foreach("fda.csv", :headers => true) do |row| | |
| data << row |
NewerOlder