@voicenter-team/opensips-js 1.0.113 → 1.0.114
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/opensips-js.es.js
CHANGED
@@ -82378,8 +82378,8 @@ class Ub {
|
|
82378
82378
|
// Center horizontally
|
82379
82379
|
y: (this.stage.height() - t.height) / 2,
|
82380
82380
|
// Center vertically
|
82381
|
-
width: t.width,
|
82382
|
-
height: t.height
|
82381
|
+
width: this.stage.width() < t.width ? this.stage.width() : t.width,
|
82382
|
+
height: this.stage.height() < t.height ? this.stage.height() : t.height
|
82383
82383
|
});
|
82384
82384
|
return e.add(n), n;
|
82385
82385
|
}
|