mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-05-06 22:46:06 +02:00
Remove debug
This commit is contained in:
@@ -22469,7 +22469,6 @@ speechSynthesis.getVoices();
|
|||||||
|
|
||||||
API.$on('GROUP', function (args) {
|
API.$on('GROUP', function (args) {
|
||||||
args.ref = this.applyGroup(args.json);
|
args.ref = this.applyGroup(args.json);
|
||||||
console.log('group', args);
|
|
||||||
this.cachedGroups.set(args.ref.id, args.ref);
|
this.cachedGroups.set(args.ref.id, args.ref);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -22499,7 +22498,6 @@ speechSynthesis.getVoices();
|
|||||||
};
|
};
|
||||||
|
|
||||||
API.$on('GROUP:REPRESENTED', function (args) {
|
API.$on('GROUP:REPRESENTED', function (args) {
|
||||||
console.log('represented', args.json);
|
|
||||||
var json = args.json;
|
var json = args.json;
|
||||||
if (!json.groupId) {
|
if (!json.groupId) {
|
||||||
// no group
|
// no group
|
||||||
@@ -22535,7 +22533,6 @@ speechSynthesis.getVoices();
|
|||||||
};
|
};
|
||||||
|
|
||||||
API.$on('GROUP:LIST', function (args) {
|
API.$on('GROUP:LIST', function (args) {
|
||||||
console.log('groups', args.json);
|
|
||||||
for (var json of args.json) {
|
for (var json of args.json) {
|
||||||
json.$memberId = json.id;
|
json.$memberId = json.id;
|
||||||
json.id = json.groupId;
|
json.id = json.groupId;
|
||||||
@@ -22568,7 +22565,6 @@ speechSynthesis.getVoices();
|
|||||||
};
|
};
|
||||||
|
|
||||||
API.$on('GROUP:JOIN', function (args) {
|
API.$on('GROUP:JOIN', function (args) {
|
||||||
console.log('join', args.json);
|
|
||||||
var json = {
|
var json = {
|
||||||
$memberId: args.json.id,
|
$memberId: args.json.id,
|
||||||
id: args.json.groupId,
|
id: args.json.groupId,
|
||||||
@@ -22616,7 +22612,6 @@ speechSynthesis.getVoices();
|
|||||||
};
|
};
|
||||||
|
|
||||||
API.$on('GROUP:LEAVE', function (args) {
|
API.$on('GROUP:LEAVE', function (args) {
|
||||||
console.log('leave', args);
|
|
||||||
var groupId = args.params.groupId;
|
var groupId = args.params.groupId;
|
||||||
if ($app.groupDialog.visible && $app.groupDialog.id === groupId) {
|
if ($app.groupDialog.visible && $app.groupDialog.id === groupId) {
|
||||||
$app.groupDialog.inGroup = false;
|
$app.groupDialog.inGroup = false;
|
||||||
@@ -22642,7 +22637,6 @@ speechSynthesis.getVoices();
|
|||||||
};
|
};
|
||||||
|
|
||||||
API.$on('GROUP:CANCELJOINREQUEST', function (args) {
|
API.$on('GROUP:CANCELJOINREQUEST', function (args) {
|
||||||
console.log('CANCELJOINREQUEST', args);
|
|
||||||
var groupId = args.params.groupId;
|
var groupId = args.params.groupId;
|
||||||
if ($app.groupDialog.visible && $app.groupDialog.id === groupId) {
|
if ($app.groupDialog.visible && $app.groupDialog.id === groupId) {
|
||||||
$app.groupDialog.ref.membershipStatus = 'inactive';
|
$app.groupDialog.ref.membershipStatus = 'inactive';
|
||||||
@@ -22671,7 +22665,6 @@ speechSynthesis.getVoices();
|
|||||||
};
|
};
|
||||||
|
|
||||||
API.$on('GROUP:SETREPRESENTATION', function (args) {
|
API.$on('GROUP:SETREPRESENTATION', function (args) {
|
||||||
console.log('SETREPRESENTATION', args);
|
|
||||||
if ($app.groupDialog.visible && $app.groupDialog.id === args.groupId) {
|
if ($app.groupDialog.visible && $app.groupDialog.id === args.groupId) {
|
||||||
$app.groupDialog.ref.isRepresenting = args.params.isRepresenting;
|
$app.groupDialog.ref.isRepresenting = args.params.isRepresenting;
|
||||||
}
|
}
|
||||||
@@ -22708,7 +22701,6 @@ speechSynthesis.getVoices();
|
|||||||
};
|
};
|
||||||
|
|
||||||
API.$on('GROUP:STRICTSEARCH', function (args) {
|
API.$on('GROUP:STRICTSEARCH', function (args) {
|
||||||
console.log('STRICTSEARCH', args);
|
|
||||||
for (var json of args.json) {
|
for (var json of args.json) {
|
||||||
this.$emit('GROUP', {
|
this.$emit('GROUP', {
|
||||||
json,
|
json,
|
||||||
@@ -22744,7 +22736,6 @@ speechSynthesis.getVoices();
|
|||||||
};
|
};
|
||||||
|
|
||||||
API.$on('GROUP:PROPS', function (args) {
|
API.$on('GROUP:PROPS', function (args) {
|
||||||
console.log('GROUP:PROPS', args);
|
|
||||||
var json = args.json;
|
var json = args.json;
|
||||||
json.$memberId = json.id;
|
json.$memberId = json.id;
|
||||||
json.id = json.groupId;
|
json.id = json.groupId;
|
||||||
@@ -22792,10 +22783,6 @@ speechSynthesis.getVoices();
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
API.$on('GROUP:ANNOUNCEMENT', function (args) {
|
|
||||||
console.log('GROUP:ANNOUNCEMENT', args);
|
|
||||||
});
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
params: {
|
params: {
|
||||||
groupId: string,
|
groupId: string,
|
||||||
@@ -22837,7 +22824,6 @@ speechSynthesis.getVoices();
|
|||||||
};
|
};
|
||||||
|
|
||||||
API.$on('GROUP:MEMBERS', function (args) {
|
API.$on('GROUP:MEMBERS', function (args) {
|
||||||
console.log('GROUP:MEMBERS', args);
|
|
||||||
for (var json of args.json) {
|
for (var json of args.json) {
|
||||||
this.$emit('GROUP:MEMBER', {
|
this.$emit('GROUP:MEMBER', {
|
||||||
json,
|
json,
|
||||||
|
|||||||
Reference in New Issue
Block a user