Skip to content

Commit 6643849

Browse files
committed
Merge branch '1.0.3'
2 parents bdf21b0 + 2bfb5f8 commit 6643849

6 files changed

+12
-6
lines changed

crossfilter.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(function(exports){
2-
crossfilter.version = "1.0.2";
2+
crossfilter.version = "1.0.3";
33
function crossfilter_identity(d) {
44
return d;
55
}
@@ -185,6 +185,8 @@ function quicksort_by(f) {
185185
e4 = a[i4], x4 = f(e4),
186186
e5 = a[i5], x5 = f(e5);
187187

188+
var t;
189+
188190
// Sort the selected 5 elements using a sorting network.
189191
if (x1 > x2) t = e1, e1 = e2, e2 = t, t = x1, x1 = x2, x2 = t;
190192
if (x4 > x5) t = e4, e4 = e5, e5 = t, t = x4, x4 = x5, x5 = t;
@@ -890,7 +892,8 @@ function crossfilter() {
890892

891893
var i,
892894
k,
893-
n;
895+
n,
896+
g;
894897

895898
// Add the added values.
896899
for (i = 0, n = added.length; i < n; ++i) {

crossfilter.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "crossfilter",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "Fast multidimensional filtering for coordinated views.",
55
"keywords": [
66
"square",

src/crossfilter.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,8 @@ function crossfilter() {
377377

378378
var i,
379379
k,
380-
n;
380+
n,
381+
g;
381382

382383
// Add the added values.
383384
for (i = 0, n = added.length; i < n; ++i) {

src/quicksort.js

+2
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ function quicksort_by(f) {
3030
e4 = a[i4], x4 = f(e4),
3131
e5 = a[i5], x5 = f(e5);
3232

33+
var t;
34+
3335
// Sort the selected 5 elements using a sorting network.
3436
if (x1 > x2) t = e1, e1 = e2, e2 = t, t = x1, x1 = x2, x2 = t;
3537
if (x4 > x5) t = e4, e4 = e5, e5 = t, t = x4, x4 = x5, x5 = t;

src/version.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
crossfilter.version = "1.0.2";
1+
crossfilter.version = "1.0.3";

0 commit comments

Comments
 (0)