update translations
This commit is contained in:
parent
4e86a39f8c
commit
28f378f8db
19 changed files with 284 additions and 64 deletions
|
@ -90,6 +90,17 @@
|
|||
console.log('chrome.sockets.udp.create');
|
||||
chrome.sockets.udp.create(function (createInfo) {
|
||||
|
||||
if (!createInfo) {
|
||||
console.log('create fail');
|
||||
deferred.resolveWith(null, [servers]);
|
||||
return;
|
||||
}
|
||||
if (!createInfo.socketId) {
|
||||
console.log('create fail');
|
||||
deferred.resolveWith(null, [servers]);
|
||||
return;
|
||||
}
|
||||
|
||||
socketId = createInfo.socketId;
|
||||
|
||||
console.log('chrome.sockets.udp.bind');
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue