1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-14 08:15:03 +12:00

Code styling

This commit is contained in:
Deathamns 2014-12-28 21:26:06 +01:00 committed by gorhill
parent 3e39e1bd9f
commit 1a1d1b1c4b

View file

@ -44,7 +44,7 @@ var messagingConnector = function(response) {
var channels = vAPI.messaging.channels;
var channel, listener;
if ( response.broadcast === true && !response.portName ) {
if ( response.broadcast === true && !response.channelName ) {
for ( channel in channels ) {
if ( channels.hasOwnProperty(channel) === false ) {
continue;
@ -64,7 +64,7 @@ var messagingConnector = function(response) {
}
if ( !listener ) {
channel = channels[response.portName];
channel = channels[response.channelName];
listener = channel && channel.listener;
}
@ -124,7 +124,7 @@ vAPI.messaging = {
}
this.channels[channelName] = {
portName: channelName,
channelName: channelName,
listener: typeof callback === 'function' ? callback : null,
send: function(message, callback) {
if ( !vAPI.messaging.connector ) {
@ -132,7 +132,7 @@ vAPI.messaging = {
}
message = {
portName: vAPI.messaging.connectorId + '|' + this.portName,
channelName: vAPI.messaging.connectorId + '|' + this.channelName,
msg: message
};
@ -144,7 +144,7 @@ vAPI.messaging = {
sendAsyncMessage('ublock:background', message);
},
close: function() {
delete vAPI.messaging.channels[this.portName];
delete vAPI.messaging.channels[this.channelName];
}
};