Skip to content

Commit b5b1740

Browse files
authored
Merge branch 'master' into loader-suffix
2 parents 7b885a9 + 909a702 commit b5b1740

6 files changed

+8
-9
lines changed

dataLoading.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ function parseDataSet(data, dataSetDescription) {
357357
for (var i = 0; i < rawSets.length; i++) {
358358
var combinedSets = Array.apply(null, new Array(rawSets.length)).map(Number.prototype.valueOf, 0);
359359
combinedSets[i] = 1;
360-
var set = new Set(setPrefix + i, setNames[i], combinedSets, rawSets[i]);
360+
var set = new USet(setPrefix + i, setNames[i], combinedSets, rawSets[i]);
361361
setIdToSet[setPrefix + i] = set;
362362
sets.push(set);
363363
if (i < nrDefaultSets) {

dataStructure.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ function BaseSet(setID, setName, combinedSets, setData, fake) {
142142
BaseSet.prototype = Element;
143143
BaseSet.prototype.constructor = Element;
144144

145-
function Set(setID, setName, combinedSets, itemList) {
145+
function USet(setID, setName, combinedSets, itemList) {
146146
BaseSet.call(this, setID, setName, combinedSets,[],1);
147147
for (var i = 0; i < itemList.length; i++) {
148148
if (itemList[i] !== 0) {
@@ -159,8 +159,8 @@ function Set(setID, setName, combinedSets, itemList) {
159159

160160
}
161161

162-
Set.prototype = BaseSet;
163-
Set.prototype.constructor = BaseSet;
162+
USet.prototype = BaseSet;
163+
USet.prototype.constructor = BaseSet;
164164

165165
function SubSet(setID, setName, combinedSets, itemList, expectedProb) {
166166
BaseSet.call(this, setID, setName, combinedSets, itemList);
@@ -184,7 +184,7 @@ SubSet.prototype.toString = function () {
184184
}
185185

186186
// Not sure how to do this properly with parameters?
187-
SubSet.prototype = Set;
187+
SubSet.prototype = USet;
188188
SubSet.prototype.constructor = SubSet;
189189

190190
function Group(groupID, groupName, level) {

google5b563563e3374b43.html

-1
This file was deleted.

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<script src="google-analytics.js"></script>
77
<script src="lib/d3.v3.js" charset="utf-8"></script>
88
<script src="lib/colorbrewer.js" charset="utf-8"></script>
9-
<script src="https://code.jquery.com/jquery-2.1.0.min.js"></script>
9+
<script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>
1010
<link rel="stylesheet" type="text/css" href="css/html_styles.css">
1111
<link rel="stylesheet" type="text/css" href="css/set_view.css">
1212
<link rel="stylesheet" type="text/css" href="css/element_view.css">

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
"d3": "^3.5.14",
3030
"font-awesome": "^4.4.0",
3131
"font-awesome-webpack": "^0.0.5-beta.2",
32-
"jquery": "^2.2.0"
32+
"jquery": "^3.4.1"
3333
}
3434
}

upset.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2535,7 +2535,7 @@ function UpSet(datasets) {
25352535

25362536
}
25372537

2538-
document.getElementById('rowSizeValue').addEventListener('changeDataset', function () {
2538+
document.getElementById('rowSizeValue').addEventListener('change', function () {
25392539
ctx.cellDistance = +(document.getElementById('rowSizeValue').value);
25402540
rowTransition();
25412541
});

0 commit comments

Comments
 (0)