Skip to content

Commit

Permalink
fix posting message issue on edge
Browse files Browse the repository at this point in the history
  • Loading branch information
smpallen99 committed Apr 5, 2018
1 parent cf3a7a8 commit 8f88744
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# InfinityOne Changelog

## 1.0.0.beta11 (2018-04-04)
## 1.0.0.beta11 (2018-04-05)

### Enhancements

Expand All @@ -18,6 +18,7 @@
* User correct platform name in description on Windows and Linux download pages
* Fix Issue expanding help sections in sidenav
* Fix some markdown formatting issue on help pages
* Fix the message posting issue on MS Edge

## 1.0.0.beta10 (2018-04-03)

Expand Down
2 changes: 1 addition & 1 deletion assets/js/tone_generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
destination: undefined,
control: undefined,
initStart: function() {
var ctrl = this.control //
var ctrl = this.control; //
this.destination = this.audioContext.createMediaStreamDestination();
if (ctrl) {
ctrl.srcObject = this.destination.stream
Expand Down
2 changes: 1 addition & 1 deletion plugins/one_chat/lib/one_chat_web/channels/client.ex
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ defmodule OneChatWeb.Client do
var at_bottom = OneUtils.is_scroll_bottom(30);
var user_id = '#{message.user_id}';
var id = '#{message.id}';
elem.append(node);
elem.appendChild(node);
Rebel.set_event_handlers('[id="#{message.id}"]');
OneChat.normalize_message(id);
if (at_bottom || user_id == ucxchat.user_id) {
Expand Down

0 comments on commit 8f88744

Please sign in to comment.