Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Ambrosini <marcoambrosini@pm.me>2021-06-14 18:03:51 +0300
committerJoas Schilling <coding@schilljs.com>2021-06-17 17:48:26 +0300
commit2f2b6b9679efd3c7f262499a31f9058b2a7f03c5 (patch)
treec8b5097ab8031d2c36aec3a844c5234209364c13 /src/mixins
parent29b2dd55ac8d7d593d0a1fb0b4bf09e01137ee42 (diff)
Lint fix
Signed-off-by: Marco Ambrosini <marcoambrosini@pm.me>
Diffstat (limited to 'src/mixins')
-rw-r--r--src/mixins/call.js16
-rw-r--r--src/mixins/vueAtReparenter.js2
2 files changed, 9 insertions, 9 deletions
diff --git a/src/mixins/call.js b/src/mixins/call.js
index a08083957..52bed3e25 100644
--- a/src/mixins/call.js
+++ b/src/mixins/call.js
@@ -26,8 +26,8 @@ const call = {
data() {
return {
screens: [],
- localMediaModel: localMediaModel,
- localCallParticipantModel: localCallParticipantModel,
+ localMediaModel,
+ localCallParticipantModel,
sharedDatas: {},
speakingUnwatchers: {},
screenUnwatchers: {},
@@ -36,7 +36,7 @@ const call = {
localSharedData: {
screenVisible: true,
},
- callParticipantCollection: callParticipantCollection,
+ callParticipantCollection,
}
},
@@ -196,23 +196,23 @@ const call = {
watch: {
- localScreen: function(localScreen) {
+ localScreen(localScreen) {
this._setScreenAvailable(localCallParticipantModel.attributes.peerId, localScreen)
},
- callParticipantModels: function(models) {
+ callParticipantModels(models) {
this.updateDataFromCallParticipantModels(models)
},
- 'speakers': function() {
+ speakers() {
this._setPromotedParticipant()
},
- 'screenSharingActive': function() {
+ screenSharingActive() {
this._setPromotedParticipant()
},
- 'screens': function() {
+ screens() {
this._setScreenVisible()
},
diff --git a/src/mixins/vueAtReparenter.js b/src/mixins/vueAtReparenter.js
index e64bb2868..89e2b0bf6 100644
--- a/src/mixins/vueAtReparenter.js
+++ b/src/mixins/vueAtReparenter.js
@@ -36,7 +36,7 @@ import Vue from 'vue'
*/
export default {
- data: function() {
+ data() {
return {
/**
* The selector for the HTML element to reparent the vue-at panel to.