fix all lint errors
[dygraphs.git] / plugins / axes.js
index 81068fe..1f9c256 100644 (file)
@@ -6,6 +6,8 @@
 
 Dygraph.Plugins.Axes = (function() {
 
+"use strict";
+
 /*
 
 Bits of jankiness:
@@ -82,7 +84,7 @@ axes.prototype.detachLabels = function() {
 axes.prototype.clearChart = function(e) {
   var g = e.dygraph;
   this.detachLabels();
-}
+};
 
 axes.prototype.willDrawChart = function(e) {
   var g = e.dygraph;
@@ -268,7 +270,7 @@ axes.prototype.willDrawChart = function(e) {
   }
 
   context.restore();
-}
+};
 
 return axes;
 })();