Use camelCase instead of snake_case

This commit is contained in:
syuilo 2018-10-23 07:01:43 +09:00
parent 162ace2fd6
commit 8ba87443ca
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69
7 changed files with 19 additions and 19 deletions

View file

@ -117,11 +117,11 @@ export default Vue.extend({
mounted() {
this.connection = (this as any).os.stream.useSharedConnection('drive');
this.connection.on('file_created', this.onStreamDriveFileCreated);
this.connection.on('file_updated', this.onStreamDriveFileUpdated);
this.connection.on('file_deleted', this.onStreamDriveFileDeleted);
this.connection.on('folder_created', this.onStreamDriveFolderCreated);
this.connection.on('folder_updated', this.onStreamDriveFolderUpdated);
this.connection.on('fileCreated', this.onStreamDriveFileCreated);
this.connection.on('fileUpdated', this.onStreamDriveFileUpdated);
this.connection.on('fileDeleted', this.onStreamDriveFileDeleted);
this.connection.on('folderCreated', this.onStreamDriveFolderCreated);
this.connection.on('folderUpdated', this.onStreamDriveFolderUpdated);
if (this.initFolder) {
this.move(this.initFolder);