@saasquatch/squatch-js 2.8.2-31 → 2.8.2-33
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/squatch.cjs.js +12 -0
- package/dist/squatch.cjs.js.map +1 -1
- package/dist/squatch.esm.js +12 -0
- package/dist/squatch.esm.js.map +1 -1
- package/dist/squatch.js +12 -0
- package/dist/squatch.js.map +1 -1
- package/dist/squatch.min.js +1 -1
- package/package.json +1 -1
package/dist/squatch.cjs.js
CHANGED
|
@@ -1315,6 +1315,18 @@ class PopupWidget extends Widget {
|
|
|
1315
1315
|
frameDoc.write(
|
|
1316
1316
|
`<script src="${this.npmCdn}/resize-observer-polyfill@1.5.x"><\/script>`
|
|
1317
1317
|
);
|
|
1318
|
+
frameDoc.write(`
|
|
1319
|
+
<style>
|
|
1320
|
+
body {
|
|
1321
|
+
height: 600px;
|
|
1322
|
+
border: 2px solid #ccc;
|
|
1323
|
+
background-color: #f9f9f9;
|
|
1324
|
+
margin: 0;
|
|
1325
|
+
padding: 0;
|
|
1326
|
+
box-sizing: border-box;
|
|
1327
|
+
}
|
|
1328
|
+
</style>
|
|
1329
|
+
`);
|
|
1318
1330
|
frameDoc.close();
|
|
1319
1331
|
_log$6("Popup template loaded into iframe");
|
|
1320
1332
|
await this._setupResizeHandler(frame);
|