Lint compliance

This commit is contained in:
yflory 2017-12-05 18:10:53 +01:00
parent 9eb33e39e6
commit 61935500f4
2 changed files with 6 additions and 6 deletions

View file

@ -652,13 +652,13 @@ define([
}
// Drive
case 'DRIVE_LOG': {
common.drive.onLog.fire(data);
common.drive.onLog.fire(data); break;
}
case 'DRIVE_CHANGE': {
common.drive.onChange.fire(data);
common.drive.onChange.fire(data); break;
}
case 'DRIVE_REMOVE': {
common.drive.onRemove.fire(data);
common.drive.onRemove.fire(data); break;
}
}
};

View file

@ -1014,18 +1014,18 @@ define([
old: o,
new: n,
path: p
})
});
});
store.proxy.on('remove', [], function (o, p) {
postMessage('DRIVE_REMOVE', {
old: o,
path: p
})
});
});
}
if (data.messenger) {
var messenger = store.messenger = Messenger.messenger(store); // TODO
var messenger = store.messenger = Messenger.messenger(store);
messenger.on('message', function (message) {
postMessage('CONTACTS_MESSAGE', message);
});