Skip to content

Commit

Permalink
Deploy 8.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
dmonad committed May 3, 2017
1 parent ce806b0 commit 5e809ff
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "y-websockets-client",
"version": "8.0.15",
"version": "8.0.16",
"homepage": "http://y-js.org",
"authors": [
"Kevin Jahns <[email protected]>"
Expand Down
5 changes: 4 additions & 1 deletion y-websockets-client.es6
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/**
* yjs - A framework for real-time p2p shared editing on any data
* @version v12.1.3
* @version v12.1.7
* @link http://y-js.org
* @license MIT
*/
Expand Down Expand Up @@ -7284,6 +7284,7 @@ function extend (Y) {
options = Y.utils.copyObject(options)
options.role = 'slave'
options.forwardToSyncingClients = options.forwardToSyncingClients || false
options.preferUntransformed = true
super(y, options)
this.options = options
options.options = Y.utils.copyObject(options.options)
Expand Down Expand Up @@ -7351,10 +7352,12 @@ function extend (Y) {
send (uid, message) {
message.room = this.options.room
this.socket.emit('yjsEvent', message)
super.send(uid, message)
}
broadcast (message) {
message.room = this.options.room
this.socket.emit('yjsEvent', message)
super.broadcast(message)
}
isDisconnected () {
return this.socket.disconnected
Expand Down
2 changes: 1 addition & 1 deletion y-websockets-client.es6.map

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions y-websockets-client.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion y-websockets-client.js.map

Large diffs are not rendered by default.

0 comments on commit 5e809ff

Please sign in to comment.