Skip to content

Commit 7962b82

Browse files
committed
Moved bluetooth web instance to bluetooth web module.
Enabled bluetooth web module for web app. Renamed wrongly named "EventHandler" to "EventTarget" for ALL files.
1 parent d17b035 commit 7962b82

File tree

86 files changed

+942
-1649
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+942
-1649
lines changed

app/chrome_app/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"short_name": "Coding with Chrome",
1010
"description": "Learn, improve, or teach coding skills within a Chrome browser.",
1111
"key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAgSWdCJSwkgFTY9d993Quot277oCS2PCM2H/F6U28NE8D3Z21GXS/7qW8XCGShB054Wboq62pP679f9tB9F+GRHzOh/an4zIu+Uhb3ZKVzZLJbHsP8N+E5wk3wgwOBgE+UXCy9I8i1RpfzutJ4aha+YEzvCsVpo6UwsuWiXORB9yRU5NuooYX+fhVpWZmrZJo4vqzQhuoJ/uWiQujABXXo4qdrclwSw8+JlpWLMqHHQ6HE8Sf7VWDdGvRdYP6LRZobWqovb659qEumJ0bxhwXtHkWgPHQWtW35T/r/oH8uuke35pH+YtBtaOqN5U3bYGPinP0bYrI33OSLUJx/DrC1wIDAQAB",
12-
"version": "5.6.12",
12+
"version": "5.6.24",
1313
"oauth2": {
1414
"client_id": "418162477970-2qmsb2sp3m522hf292154favsjgpsj9n.apps.googleusercontent.com",
1515
"scopes": [

app/nw_app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "binary",
3-
"version": "5.6.12",
3+
"version": "5.6.24",
44
"main": "js/background.js",
55
"window": {
66
"title": "Coding with Chrome",

package-lock.json

Lines changed: 35 additions & 120 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "coding-with-chrome",
33
"description": "Coding with Chrome",
4-
"version": "5.6.12",
4+
"version": "5.6.24",
55
"author": "Markus Bordihn ([email protected])",
66
"license": "Apache-2.0",
77
"private": true,
@@ -21,7 +21,7 @@
2121
"http-server": "latest",
2222
"jasmine-core": "latest",
2323
"jsdoc": "^3.5.5",
24-
"karma": "^2.0.3",
24+
"karma": "^2.0.4",
2525
"karma-browserify": "^5.3.0",
2626
"karma-chrome-launcher": "latest",
2727
"karma-closure": "latest",

src/addon/message/message.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ cwc.addon.Message.prototype.prepare = function() {
5959

6060
let modeInstance = this.helper.getInstance('mode');
6161
if (modeInstance) {
62-
goog.events.listen(modeInstance.getEventHandler(),
62+
goog.events.listen(modeInstance.getEventTarget(),
6363
cwc.mode.Modder.Events.Type.MODE_CHANGE,
6464
this.eventsModder, false, this);
6565
}

src/addon/workbench/workbench.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ cwc.addon.Workbench.prototype.prepare = async function() {
175175

176176
let selectScreenInstance = this.helper.getInstance('selectScreen');
177177
if (selectScreenInstance) {
178-
goog.events.listen(selectScreenInstance.getEventHandler(),
178+
goog.events.listen(selectScreenInstance.getEventTarget(),
179179
cwc.ui.SelectScreen.Events.Type.VIEW_CHANGE,
180180
this.showRelevantProjects_, false, this);
181181
}

src/cache/cache.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ cwc.Cache = function(helper) {
4242
this.helper = helper;
4343

4444
/** @private {number} */
45-
this.version = 7;
45+
this.version = 8;
4646

4747
/** @private {Object} */
4848
this.cache_ = {};

0 commit comments

Comments
 (0)