Commit 683cbc98 authored by Mike Greiling's avatar Mike Greiling

remove bind polyfill from stat_graph_contributors_graph.js

parent 2dc11116
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
import d3 from 'd3'; import d3 from 'd3';
const bind = function(fn, me) { return function() { return fn.apply(me, arguments); }; };
const extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; }; const extend = function(child, parent) { for (var key in parent) { if (hasProp.call(parent, key)) child[key] = parent[key]; } function ctor() { this.constructor = child; } ctor.prototype = parent.prototype; child.prototype = new ctor(); child.__super__ = parent.prototype; return child; };
const hasProp = {}.hasOwnProperty; const hasProp = {}.hasOwnProperty;
...@@ -95,7 +94,7 @@ export const ContributorsMasterGraph = (function(superClass) { ...@@ -95,7 +94,7 @@ export const ContributorsMasterGraph = (function(superClass) {
function ContributorsMasterGraph(data1) { function ContributorsMasterGraph(data1) {
this.data = data1; this.data = data1;
this.update_content = bind(this.update_content, this); this.update_content = this.update_content.bind(this);
this.width = $('.content').width() - 70; this.width = $('.content').width() - 70;
this.height = 200; this.height = 200;
this.x = null; this.x = null;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment