diff --git a/frontend/src/uxbox/main/data/workspace/notifications.cljs b/frontend/src/uxbox/main/data/workspace/notifications.cljs index 97b1b0724..430ae20db 100644 --- a/frontend/src/uxbox/main/data/workspace/notifications.cljs +++ b/frontend/src/uxbox/main/data/workspace/notifications.cljs @@ -18,11 +18,11 @@ [uxbox.main.repo :as rp] [uxbox.main.store :as st] [uxbox.main.streams :as ms] - [uxbox.main.websockets :as ws] [uxbox.util.avatars :as avatars] [uxbox.util.geom.point :as gpt] [uxbox.util.time :as dt] - [uxbox.util.transit :as t])) + [uxbox.util.transit :as t] + [uxbox.util.websockets :as ws])) (declare handle-presence) (declare handle-pointer-update) diff --git a/frontend/src/uxbox/main/websockets.cljs b/frontend/src/uxbox/util/websockets.cljs similarity index 89% rename from frontend/src/uxbox/main/websockets.cljs rename to frontend/src/uxbox/util/websockets.cljs index 96f203d76..db3999e6e 100644 --- a/frontend/src/uxbox/main/websockets.cljs +++ b/frontend/src/uxbox/util/websockets.cljs @@ -2,9 +2,12 @@ ;; License, v. 2.0. If a copy of the MPL was not distributed with this ;; file, You can obtain one at http://mozilla.org/MPL/2.0/. ;; -;; Copyright (c) 2015-2017 Andrey Antukh +;; This Source Code Form is "Incompatible With Secondary Licenses", as +;; defined by the Mozilla Public License, v. 2.0. +;; +;; Copyright (c) 2020 UXBOX Labs SL -(ns uxbox.main.websockets +(ns uxbox.util.websockets "A interface to webworkers exposed functionality." (:require [goog.events :as ev]