Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| root = exports ? this | |
| class root.App | |
| constructor: (repo) -> | |
| @github = new App.Github | |
| @d3 = new App.D3 | |
| @github.loadRepo(repo, (data) => | |
| data = @github.parseForD3(data) | |
| @d3.renderCirclePack(data) |
| # | |
| # Add meta data support to Model and Collection | |
| # Allows server to include additional meta data that gets automatically parsed and stashed in [model|collection].meta | |
| # | |
| # Usage: | |
| # Include this file after backbone.js | |
| # Set data_key on Model or Collection | |
| # | |
| # If data_key is not set, original parse method will be invoked. | |
| # |