Skip to content

Instantly share code, notes, and snippets.

View winniehell's full-sized avatar
🤯
I set my status

Winnie winniehell

🤯
I set my status
View GitHub Profile
@winniehell
winniehell / d3.v2.js
Last active March 8, 2016 23:44 — forked from ZJONSSON/index.html
Simple transitioning slides with SVG and D3
(function() {
function d3_class(ctor, properties) {
try {
for (var key in properties) {
Object.defineProperty(ctor.prototype, key, {
value: properties[key],
enumerable: false
});
}
} catch (e) {