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

github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulius Härtl <jus@bitgrid.net>2019-05-14 17:12:05 +0300
committerJulius Härtl <jus@bitgrid.net>2019-05-14 17:12:37 +0300
commite5711781cfe5aeb7e79ff50482394abecb74af7f (patch)
tree9ae2771bacdce9043503c7522993b5d425025301 /src/components/Editor.vue
parent7b1652351ce1b6b4c342fb7f817d3b68f0941f13 (diff)
Add makefile and let it pass
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'src/components/Editor.vue')
-rw-r--r--src/components/Editor.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/Editor.vue b/src/components/Editor.vue
index d3c2f1e1c..aa187d61c 100644
--- a/src/components/Editor.vue
+++ b/src/components/Editor.vue
@@ -159,7 +159,7 @@ export default {
}
},
mounted() {
- if (this.active && this.fileId || (this.shareToken)) {
+ if (this.active && (this.fileId || this.shareToken)) {
this.initSession()
}
setInterval(() => { this.updateLastSavedStatus() }, 2000)
@@ -171,7 +171,7 @@ export default {
}
},
initSession() {
- if ((!this.relativePath && !this.fileId) && !this.shareToken ) {
+ if ((!this.relativePath && !this.fileId) && !this.shareToken) {
console.error('No file given')
this.$emit('error', 'No relative path given')
return
@@ -255,7 +255,7 @@ export default {
return true
}
}),
- ...exampleSetup({ schema, floatingMenu: false}),
+ ...exampleSetup({ schema, floatingMenu: false }),
collab({
version: authority.steps.length,
clientID: data.session.id