Rename doSendAllWithCallback to sendAll
This commit is contained in:
parent
0c3496f798
commit
0f503fa521
1 changed files with 2 additions and 2 deletions
|
@ -221,7 +221,7 @@ weechat.factory('connection', ['$q', '$rootScope', '$log', '$store', 'handlers',
|
||||||
* @param messages list of messages
|
* @param messages list of messages
|
||||||
* @returns a promise
|
* @returns a promise
|
||||||
*/
|
*/
|
||||||
var doSendAllWithCallback = function(messages) {
|
var sendAll = function(messages) {
|
||||||
var promises = [];
|
var promises = [];
|
||||||
for(i in messages) {
|
for(i in messages) {
|
||||||
var promise = send(messages[i]);
|
var promise = send(messages[i]);
|
||||||
|
@ -256,7 +256,7 @@ weechat.factory('connection', ['$q', '$rootScope', '$log', '$store', 'handlers',
|
||||||
* Send all the initialization commands
|
* Send all the initialization commands
|
||||||
* and resolve them as a single promise.
|
* and resolve them as a single promise.
|
||||||
*/
|
*/
|
||||||
doSendAllWithCallback([
|
sendAll([
|
||||||
weeChat.Protocol.formatInfo({
|
weeChat.Protocol.formatInfo({
|
||||||
name: 'version',
|
name: 'version',
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Reference in a new issue