X-Git-Url: https://adrianiainlam.tk/git/?a=blobdiff_plain;f=dygraph-layout.js;h=ef1df916ff2154a17ac553c67b2dc19b935cf318;hb=f9b5a82c0e67c25b47cc5a40b46ca2f1056c35f5;hp=bf3d7e0361dd42749e0d83ca09a5adaf305e08c2;hpb=ec8cc8b206a5ec69ec5c9ca786d2b127e6c00c72;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; + +})();