diff --git a/background.html b/background.html index afc272271..4cbc7da19 100644 --- a/background.html +++ b/background.html @@ -105,7 +105,7 @@ -
+
diff --git a/js/views/conversation_view.js b/js/views/conversation_view.js index eb57925da..c48842988 100644 --- a/js/views/conversation_view.js +++ b/js/views/conversation_view.js @@ -725,16 +725,17 @@ }, async toggleMicrophone() { - const allowMicrophone = await window.getMediaPermissions(); - if ( - !allowMicrophone || - this.$('.send-message').val().length > 0 || - this.fileInput.hasFiles() - ) { + // FIXME audric hide microphone for now until refactor branch is merged + // const allowMicrophone = await window.getMediaPermissions(); + // if ( + // !allowMicrophone || + // this.$('.send-message').val().length > 0 || + // this.fileInput.hasFiles() + // ) { this.$('.capture-audio').hide(); - } else { - this.$('.capture-audio').show(); - } + // } else { + // this.$('.capture-audio').show(); + // } }, captureAudio(e) { e.preventDefault();