actioncable-including-source-code
Advanced tools
Comparing version 5.2.0-3 to 5.2.0-4
@@ -5,12 +5,2 @@ (function(global, factory) { | ||
"use strict"; | ||
var INTERNAL = { | ||
message_types: { | ||
welcome: "welcome", | ||
ping: "ping", | ||
confirmation: "confirm_subscription", | ||
rejection: "reject_subscription" | ||
}, | ||
default_mount_path: "/cable", | ||
protocols: [ "actioncable-v1-json", "actioncable-unsupported" ] | ||
}; | ||
var _typeof = typeof Symbol === "function" && typeof Symbol.iterator === "symbol" ? function(obj) { | ||
@@ -183,2 +173,12 @@ return typeof obj; | ||
ConnectionMonitor.staleThreshold = 6; | ||
var INTERNAL = { | ||
message_types: { | ||
welcome: "welcome", | ||
ping: "ping", | ||
confirmation: "confirm_subscription", | ||
rejection: "reject_subscription" | ||
}, | ||
default_mount_path: "/cable", | ||
protocols: [ "actioncable-v1-json", "actioncable-unsupported" ] | ||
}; | ||
var message_types = INTERNAL.message_types, protocols = INTERNAL.protocols; | ||
@@ -185,0 +185,0 @@ var supportedProtocols = protocols.slice(0, protocols.length - 1); |
{ | ||
"name": "actioncable-including-source-code", | ||
"version": "5.2.0-3", | ||
"version": "5.2.0-4", | ||
"description": "WebSocket framework for Ruby on Rails.", | ||
@@ -5,0 +5,0 @@ "main": "app/assets/javascripts/action_cable.js", |
@@ -1,4 +0,4 @@ | ||
import INTERNAL from "actioncable/internal" | ||
import ActionCable from "./index" | ||
import ConnectionMonitor from "./connection_monitor" | ||
import INTERNAL from "./internal" | ||
@@ -5,0 +5,0 @@ // Encapsulate the cable connection held by the consumer. This is an internal class not intended for direct user manipulation. |
@@ -1,5 +0,5 @@ | ||
import INTERNAL from "actioncable/internal" | ||
import Connection from "./connection" | ||
import ConnectionMonitor from "./connection_monitor" | ||
import Consumer from "./consumer" | ||
import INTERNAL from "./internal" | ||
import Subscription from "./subscription" | ||
@@ -6,0 +6,0 @@ import Subscriptions from "./subscriptions" |
61106
13