@bigso/auth-sdk 0.4.2 → 0.4.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -260,7 +260,7 @@ var BigsoAuth = class extends EventEmitter {
|
|
|
260
260
|
}
|
|
261
261
|
this.iframe = document.createElement("iframe");
|
|
262
262
|
this.iframe.className = "sso-frame";
|
|
263
|
-
this.iframe.src = `${this.options.ssoOrigin}/auth/sign-in?v=2.3&client_id=${this.options.clientId}
|
|
263
|
+
this.iframe.src = `${this.options.ssoOrigin}/auth/sign-in?v=2.3&client_id=${this.options.clientId}`;
|
|
264
264
|
this.iframe.setAttribute("title", "SSO Login");
|
|
265
265
|
this.overlayEl.appendChild(this.iframe);
|
|
266
266
|
this.debug("Iframe creado", this.iframe.src);
|
package/dist/index.js
CHANGED
|
@@ -234,7 +234,7 @@ var BigsoAuth = class extends EventEmitter {
|
|
|
234
234
|
}
|
|
235
235
|
this.iframe = document.createElement("iframe");
|
|
236
236
|
this.iframe.className = "sso-frame";
|
|
237
|
-
this.iframe.src = `${this.options.ssoOrigin}/auth/sign-in?v=2.3&client_id=${this.options.clientId}
|
|
237
|
+
this.iframe.src = `${this.options.ssoOrigin}/auth/sign-in?v=2.3&client_id=${this.options.clientId}`;
|
|
238
238
|
this.iframe.setAttribute("title", "SSO Login");
|
|
239
239
|
this.overlayEl.appendChild(this.iframe);
|
|
240
240
|
this.debug("Iframe creado", this.iframe.src);
|