Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initial enhancements #1

Merged
merged 4 commits into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bump JS API version
  • Loading branch information
darryncampbell-pubnub committed Feb 28, 2024
commit 4017916f814bda4573a23b268d9bc500d7772d50
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
</script>

<!-- PubNub SDK -->
<script src="https://cdn.pubnub.com/sdk/javascript/pubnub.7.5.0.min.js"></script>
<script src="https://cdn.pubnub.com/sdk/javascript/pubnub.7.6.1.min.js"></script>

<!-- Application logic -->
<script src="./js/constants.js"></script>
Expand Down
2 changes: 1 addition & 1 deletion js/simulation/worker_vehiclesim.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
if ("function" === typeof importScripts) {
const window = null;
const TICK_INTERVAL_BASE = 500; // Time in ms between each 'tick', triggering a simulation update
importScripts("https://cdn.pubnub.com/sdk/javascript/pubnub.7.5.0.min.js");
importScripts("https://cdn.pubnub.com/sdk/javascript/pubnub.7.6.1.min.js");

var deviceSimulator;
var sharedChannelName;
Expand Down