Skip to content
This repository was archived by the owner on Jul 31, 2019. It is now read-only.

Commit 7437a1a

Browse files
committed
Fix travis issues, remove console logging and offlineReady event for Thimble
1 parent 58fa748 commit 7437a1a

File tree

2 files changed

+5
-21
lines changed

2 files changed

+5
-21
lines changed

public/editor/scripts/editor/js/fc/offline.js

+4-8
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
* The events we trigger include:
44
*
55
* - `updatesAvailable`: one of Thimble and/or Brackets has updates in the cache, user should reload
6-
* - `offlineReady`: one of Thimble and/or Brackets has cached its content
76
* - `online`: the browser has re-established a network connection
87
* - `offline`: the browser has lost its network connection
98
*
@@ -34,9 +33,6 @@ define(function(require) {
3433
if (window.navigator.serviceWorker.controller) {
3534
// Cache has been updated
3635
Offline.trigger("updatesAvailable");
37-
} else {
38-
// Cache has been filled
39-
Offline.trigger("offlineReady");
4036
}
4137
break;
4238
case 'redundant':
@@ -57,10 +53,10 @@ define(function(require) {
5753
// Listen for sw events from Bramble, and consolidate with our own.
5854
Bramble.on("updatesAvailable", function() {
5955
Offline.trigger("updatesAvailable");
60-
})
56+
});
6157
Bramble.on("offlineReady", function() {
6258
Offline.trigger("offlineReady");
63-
})
59+
});
6460

6561
// Listen for online/offline events from the browser
6662
window.addEventListener("offline", function() {
@@ -69,11 +65,11 @@ define(function(require) {
6965
window.addEventListener("online", function() {
7066
Offline.trigger("online");
7167
});
72-
}
68+
};
7369

7470
Offline.isOnline = function() {
7571
return navigator.onLine;
76-
}
72+
};
7773

7874
return Offline;
7975
});

public/editor/scripts/main.js

+1-13
Original file line numberDiff line numberDiff line change
@@ -54,20 +54,8 @@ require(["jquery", "bowser", "fc/offline"], function($, bowser, Offline) {
5454

5555
// Initialize offline/online handling
5656
Offline.init(Bramble);
57-
Offline.on("online", function() {
58-
console.log("Offline: online event")
59-
});
60-
Offline.on("offline", function() {
61-
console.log("Offline: offline event")
62-
});
63-
Offline.on('offlineReady', function() {
64-
console.log("Offline: offlineReady event")
65-
});
66-
Offline.on('updatesAvailable', function() {
67-
console.log("Offline: upddatesAvailable event")
68-
});
6957

70-
function init(BrambleEditor, Project, SSOOverride, ProjectRenameUtility, Offline) {
58+
function init(BrambleEditor, Project, SSOOverride, ProjectRenameUtility) {
7159
var thimbleScript = document.getElementById("thimble-script");
7260
var appUrl = thimbleScript.getAttribute("data-app-url");
7361
var projectDetails = thimbleScript.getAttribute("data-project-details");

0 commit comments

Comments
 (0)