isobit-ui 0.1.61 → 0.1.64
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.js +4 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.1.
|
|
2
|
+
* isobit-ui v0.1.64
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -7016,12 +7016,13 @@ window.ui = _$1.ui = function (cfg) {
|
|
|
7016
7016
|
|
|
7017
7017
|
if (window.innerWidth < 600) {
|
|
7018
7018
|
//console.log(333333);
|
|
7019
|
+
console.log(dialog);
|
|
7019
7020
|
var dc = dialog.querySelector('.v-dialog-content'); //console.log(dc);
|
|
7020
7021
|
|
|
7021
7022
|
var h = dialog.querySelector('.v-panel-titlebar'); //console.log(h.clientHeight);
|
|
7022
7023
|
|
|
7023
|
-
var ih = window.innerHeight - 94 - h ? h.clientHeight : 0;
|
|
7024
|
-
dc.style.height = ih + "px";
|
|
7024
|
+
var ih = window.innerHeight - 94 - (h ? h.clientHeight : 0);
|
|
7025
|
+
(dc ? dc : dialog).style.height = ih + "px";
|
|
7025
7026
|
}
|
|
7026
7027
|
};
|
|
7027
7028
|
|