Skip to content

Commit

Permalink
Merge branch 'master' into gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
bfinzer committed Jun 5, 2024
2 parents c7b1023 + 54fb6e3 commit 82f3007
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion CollaborationService/js/CollaborationService.js
Original file line number Diff line number Diff line change
Expand Up @@ -553,7 +553,7 @@ var dispatcher = Object.create({ // jshint ignore:line

init: function () {
firebase.initializeApp({
apiKey: "AIzaSyBkHsVd9ZUNL0Uy6SbqbaOn8nwIvmlwW9M",
apiKey: atob("QUl6YVN5QmtIc1ZkOVpVTkwwVXk2U2JxYmFPbjhud0l2bWx3VzlN"),
authDomain: "codap-collaborations.firebaseapp.com",
databaseURL: "https://codap-collaborations.firebaseio.com",
storageBucket: "codap-collaborations.appspot.com",
Expand Down
2 changes: 1 addition & 1 deletion GoogleSheets/js/Everything.js
Original file line number Diff line number Diff line change
Expand Up @@ -544,7 +544,7 @@ var dispatcher = Object.create({ // jshint ignore:line

init: function () {
firebase.initializeApp({
apiKey: "AIzaSyBkHsVd9ZUNL0Uy6SbqbaOn8nwIvmlwW9M",
apiKey: atob("QUl6YVN5QmtIc1ZkOVpVTkwwVXk2U2JxYmFPbjhud0l2bWx3VzlN"),
authDomain: "codap-collaborations.firebaseapp.com",
databaseURL: "https://codap-collaborations.firebaseio.com",
storageBucket: "codap-collaborations.appspot.com",
Expand Down
2 changes: 1 addition & 1 deletion data-science-worlds/barty/barty.html
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ <h2>Hints</h2>


<div id="mapTab">
<img src="https://www.bart.gov/sites/all/themes/bart_desktop/img/system-map.gif">
<img src="https://inquiryspace-resources.s3.amazonaws.com/test-un-data/bart-system-map.gif">

</div>

Expand Down
4 changes: 2 additions & 2 deletions eepsmedia/plugins/testimate/src/connect.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ connect = {
updateDatasetForLogisticGroups: async function (iValue, iAxis) {

const theVariable = (iAxis === "X") ? data.xAttData.name : data.yAttData.name;
const theFormula = `if (${theVariable} = "${iValue}", 1, 0)`;
const theFormula = `\`${theVariable}\` = "${iValue}" ? 1 : 0`;

const newAttributeInfo = {
name: testimate.constants.logisticGroupAttributeName,
Expand Down Expand Up @@ -538,4 +538,4 @@ connect = {
}


}
}
4 changes: 2 additions & 2 deletions eepsmedia/plugins/testimate/src/testimate.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ const testimate = {

constants: {
pluginName: `testimate`,
version: `2024g`,
version: `2024h`,
dimensions: {height: 555, width: 444},

emittedDatasetName: `tests and estimates`, // for receiving emitted test and estimate results
Expand All @@ -237,4 +237,4 @@ const testimate = {
valueDictionary : {}, // records the number in the "value" box
}
}
}
}

0 comments on commit 82f3007

Please sign in to comment.