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
| d3.json('https://astportfoliodata.firebaseio.com/.json', function(d) { | |
| console.log(data); //Log output to console | |
| var dataset = data | |
| myDataRef = new Firebase('https://astportfoliodata.firebaseio.com/.json'); | |
| //Width and height | |
| var w = 500; | |
| var h = 400; |
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
| //First assignment | |
| // Original: | |
| https://gist.github.com/ABrouwer/9955831 | |
| //Improved version: | |
| https://gist.github.com/ABrouwer/9955899 | |
| //Second assignment |
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
| <link rel="import" | |
| href="/components/polymer/polymer.html"> | |
| <link rel="import" | |
| href="/public/vendor/core-firebase/core-firebase.html"> | |
| <polymer-element name="new-cloud-tag" noscript> | |
| <template> | |
| <style> | |
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
| <link rel="import" | |
| href="/components/polymer/polymer.html"> | |
| <link rel="import" | |
| href="/public/vendor/core-firebase/core-firebase.html"> | |
| <polymer-element name="new-cloud-tag"> | |
| <template> | |
| <link href='./new-cloud-tag.css' rel='stylesheet' type='text/css'> |
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
| body { | |
| font: 13px/20px "Lucida Grande", Tahoma, Verdana, sans-serif; | |
| color: #404040; | |
| background: #eee; | |
| } | |
| .container { | |
| margin: 50px auto; | |
| width: 380px; | |
| } |
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
| <link rel="import" | |
| href="/components/polymer/polymer.html"> | |
| <link rel="import" | |
| href="/public/vendor/core-firebase/core-firebase.html"> | |
| <link rel="import" | |
| href="/public/vendor/polymer-ajax/polymer-ajax.html"> | |
| <polymer-element name="new-polymer-ajax-tag" noscript> |
OlderNewer