provide examples of valid and invalid rpc calls

pull/1/head
ansuz 8 years ago
parent 7187d3c550
commit bd9efd7c04

@ -30,6 +30,20 @@ define([
if (e) { return void console.error(e); }
console.log(msg);
});
var list = Cryptpad.getUserChannelList();
if (list.length) {
rpc.send('GET_FILE_SIZE', list[0], function (e, msg) {
if (e) {
return void console.error(e);
}
console.log(msg);
});
}
rpc.send('GET_FILE_SIZE', 'pewpew', function (e, msg) {
if (e) { return void console.error(e); }
console.log(msg);
});
});
});
});

Loading…
Cancel
Save