Migrate most of core dygraphs to ES6 modules.
[dygraphs.git] / src / plugins / grid.js
index db1b42d..bf6e3fe 100644 (file)
@@ -5,8 +5,6 @@
  */
 /*global Dygraph:false */
 
-Dygraph.Plugins.Grid = (function() {
-
 /*
 
 Current bits of jankiness:
@@ -119,6 +117,4 @@ grid.prototype.willDrawChart = function(e) {
 grid.prototype.destroy = function() {
 };
 
-return grid;
-
-})();
+export default grid;