summaryrefslogtreecommitdiffstats
path: root/src/components/Settings/SettingsImportContacts.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/Settings/SettingsImportContacts.vue')
-rw-r--r--src/components/Settings/SettingsImportContacts.vue8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/components/Settings/SettingsImportContacts.vue b/src/components/Settings/SettingsImportContacts.vue
index 80f418f7..23a4990c 100644
--- a/src/components/Settings/SettingsImportContacts.vue
+++ b/src/components/Settings/SettingsImportContacts.vue
@@ -88,20 +88,12 @@ export default {
let file = event.target.files[0]
let reader = new FileReader()
let selectedAddressbook = this.selectedAddressbook
-<<<<<<< HEAD
// this.$store.dispatch('changeStage', 'parsing')
let self = this
reader.onload = function(e) {
// self.$store.dispatch('changeStage', 'importing')
self.$store.dispatch('getContactsFromAddressBook', { vcf: reader.result, addressbook: selectedAddressbook, importState: this.importState })
// self.$store.dispatch('changeStage', 'default')
-=======
- this.$emit('clicked', { importing: true })
- let self = this
- reader.onload = function(e) {
- self.$store.dispatch('getContactsFromAddressBook', { vcf: reader.result, addressbook: selectedAddressbook, importState: this.importState })
- self.$emit('fileLoaded', false)
->>>>>>> 699af87659b724df00df77da2c9b66ec9013c2d6
}
reader.readAsText(file)
}