forked from mbostock's block: Superformula Explorer
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
/* Author: J. Harshbarger | |
Simple mechanism to link citation references with citation notes. This code will do two things: | |
1) Highlight a citation note (actually just add the `highlight` class to the parent) when a citation reference or note is clicked. | |
2) Citation note text (the anchors parent) is added to each citation reference as a popover. | |
Citation notes and references are linked using standard HTML has linking using the anchor tag. For both the citation note and citation reference the parent of the link is important. For example: | |
```js |
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
.ng-pageslide { | |
z-index: 1000; | |
position: fixed; | |
width: 0; | |
height: 0; | |
-moz-transition-property: width, height; /* Firefox 4 */ | |
-webkit-transition-property: width, height; /* Safari and Chrome */ | |
-o-transition-property: width, height; /* Opera */ | |
transition-property: width, height; | |
-webkit-transition-duration: 0.5s; /* Safari */ |
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
node_modules/ |
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
node_modules/ |
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
# http://editorconfig.org | |
root = true | |
[*] | |
indent_style = space | |
indent_size = 2 | |
charset = utf-8 | |
trim_trailing_whitespace = true | |
insert_final_newline = true |
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
// Detect Vendor Prefix with JavaScript | |
// by By David Walsh | |
// from http://davidwalsh.name/vendor-prefix | |
var prefix = (function () { | |
var styles = window.getComputedStyle(document.documentElement, ''), | |
pre = (Array.prototype.slice | |
.call(styles) | |
.join('') | |
.match(/-(moz|webkit|ms)-/) || (styles.OLink === '' && ['', 'o']) | |
)[1], |
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
<link rel="import" | |
href="//www.polymer-project.org/1.0/samples/components/polymer/polymer.html"> | |
<dom-module id="bar-chart"> | |
<style> | |
.content-container > ::content .axis path, | |
.content-container > ::content .axis line { | |
fill: none; | |
stroke: #000; | |
shape-rendering: crispEdges; |
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
module.exports = require('signals'); |
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> | |
<head> | |
<meta charset="UTF-8"> | |
<link rel="stylesheet" href="https://cdn.rawgit.com/martine/webtreemap/a2fa353833eca1a4821ba4c93fb6a7d546aed02a/webtreemap.css"> | |
<title>angular-downloadsvg-directive.min.js - Source Map Explorer</title> | |
<style> | |
html, body { | |
height: 100%; | |
} |
OlderNewer