X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=dygraph-layout.js;h=ef1df916ff2154a17ac553c67b2dc19b935cf318;hb=bfb3e0a44ba7eb76704389cd1515db9995944d41;hp=bf3d7e0361dd42749e0d83ca09a5adaf305e08c2;hpb=8a68db7d96431554122d0ffc0356cc6aa2e6b822;p=dygraphs.git diff --git a/dygraph-layout.js b/dygraph-layout.js index bf3d7e0..ef1df91 100644 --- a/dygraph-layout.js +++ b/dygraph-layout.js @@ -9,7 +9,8 @@ * dygraphs. */ -/*jshint globalstrict: true */ +var DygraphLayout = (function() { + /*global Dygraph:false */ "use strict"; @@ -344,3 +345,7 @@ DygraphLayout.prototype.removeAllDatasets = function() { this.setPointsLengths = []; this.setPointsOffsets = []; }; + +return DygraphLayout; + +})();