Commit 31356c20 authored by Mike Greiling's avatar Mike Greiling

satisfy eslint no-param-reassign and remove rule exception

parent ee99de6e
/* eslint-disable no-param-reassign */
/* global Vue */ /* global Vue */
((global) => { (() => {
class Subscription { class Subscription {
constructor(containerSelector) { constructor(containerSelector) {
this.containerElm = (typeof containerSelector === 'string') this.containerElm = (typeof containerSelector === 'string')
...@@ -54,5 +53,6 @@ ...@@ -54,5 +53,6 @@
} }
} }
global.Subscription = Subscription; window.gl = window.gl || {};
})(window.gl || (window.gl = {})); window.gl.Subscription = Subscription;
})();
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment