Explorar o código

Cleaned up jquery.flot.events.js

_lastRange was confused with lastRange. This declared '_lastRange' somewhere globally.

Was also not used, so removed both.

(I know this is a library, but it was heavily adjusted anyway.)
Eric Smekens %!s(int64=10) %!d(string=hai) anos
pai
achega
58093941c0
Modificáronse 1 ficheiros con 1 adicións e 3 borrados
  1. 1 3
      public/vendor/flot/jquery.flot.events.js

+ 1 - 3
public/vendor/flot/jquery.flot.events.js

@@ -50,7 +50,7 @@
             height: 10
         };
 
-        var _events = [], _types, _eventsEnabled = false, lastRange;
+        var _events = [], _types, _eventsEnabled = false;
 
         plot.getEvents = function(){
             return _events;
@@ -94,8 +94,6 @@
                 // check for first run
                 if (_events.length < 1) {
 
-                    _lastRange = xaxis.max - xaxis.min;
-
                     // check for clustering
                     if (options.events.clustering) {
                         var ed = _clusterEvents(options.events.types, options.events.data, xaxis.max - xaxis.min);