소스 검색

Fixed jshinting

Rashid Khan 12 년 전
부모
커밋
db34054ca0
1개의 변경된 파일2개의 추가작업 그리고 3개의 파일을 삭제
  1. 2 3
      src/app/panels/histogram/timeSeries.js

+ 2 - 3
src/app/panels/histogram/timeSeries.js

@@ -218,8 +218,7 @@ function (_, Interval) {
    * Not fill zero's on either side of the current time, only the current time
    * @return {array}  An array of points to plot with flot
    */
-  ts.ZeroFilled.prototype._getNoZeroFlotPairs = function (result, time, i, times) {
-    var next, expected_next, prev, expected_prev;
+  ts.ZeroFilled.prototype._getNoZeroFlotPairs = function (result, time) {
 
     // add the current time
     if(this._data[time]){
@@ -228,6 +227,6 @@ function (_, Interval) {
 
     return result;
   };
-  
+
   return ts;
 });