@innovastudio/contentbox 1.3.15 → 1.3.18
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/package.json
CHANGED
@@ -1303,25 +1303,6 @@ class SideBar {
|
|
1303
1303
|
/* First Loading */
|
1304
1304
|
.is-category-list {opacity:0;transition: opacity ease 0.3s;}
|
1305
1305
|
.is-design-list {opacity:0;transition: opacity ease 0.3s;}
|
1306
|
-
.pace {
|
1307
|
-
-webkit-pointer-events: none;
|
1308
|
-
pointer-events: none;
|
1309
|
-
-webkit-user-select: none;
|
1310
|
-
-moz-user-select: none;
|
1311
|
-
user-select: none;
|
1312
|
-
}
|
1313
|
-
.pace-inactive {
|
1314
|
-
display: none;
|
1315
|
-
}
|
1316
|
-
.pace .pace-progress {
|
1317
|
-
background: #000000;
|
1318
|
-
position: fixed;
|
1319
|
-
z-index: 2000;
|
1320
|
-
top: 0;
|
1321
|
-
right: 100%;
|
1322
|
-
width: 100%;
|
1323
|
-
height: 2px;
|
1324
|
-
}
|
1325
1306
|
|
1326
1307
|
</style>
|
1327
1308
|
</head>`;
|
@@ -1399,6 +1380,14 @@ class SideBar {
|
|
1399
1380
|
<script src="${designUrl2}" type="text/javascript"></script>
|
1400
1381
|
|
1401
1382
|
<script>
|
1383
|
+
|
1384
|
+
applyParentStyles();
|
1385
|
+
setTimeout(()=>{
|
1386
|
+
document.querySelector('.is-category-list').style.opacity = 1;
|
1387
|
+
document.querySelector('.is-design-list').style.opacity = 1;
|
1388
|
+
},300);
|
1389
|
+
|
1390
|
+
|
1402
1391
|
function hasClass(element, classname) {
|
1403
1392
|
if(!element) return false;
|
1404
1393
|
try{
|
@@ -2345,12 +2334,6 @@ class SideBar {
|
|
2345
2334
|
}
|
2346
2335
|
});
|
2347
2336
|
|
2348
|
-
setTimeout(()=>{
|
2349
|
-
document.querySelector('.is-category-list').style.opacity = 1;
|
2350
|
-
document.querySelector('.is-design-list').style.opacity = 1;
|
2351
|
-
},300);
|
2352
|
-
|
2353
|
-
applyParentStyles();
|
2354
2337
|
</script>
|
2355
2338
|
</body>
|
2356
2339
|
</html>
|
@@ -87842,6 +87825,7 @@ class ContentBox {
|
|
87842
87825
|
};
|
87843
87826
|
|
87844
87827
|
if (this.disableLoadingStatus) {
|
87828
|
+
Pace.stop();
|
87845
87829
|
setTimeout(() => {
|
87846
87830
|
startShowing();
|
87847
87831
|
}, 300);
|
@@ -87852,7 +87836,10 @@ class ContentBox {
|
|
87852
87836
|
startShowing();
|
87853
87837
|
});
|
87854
87838
|
} else {
|
87855
|
-
|
87839
|
+
Pace.stop();
|
87840
|
+
setTimeout(() => {
|
87841
|
+
startShowing();
|
87842
|
+
}, 300);
|
87856
87843
|
}
|
87857
87844
|
} // Add document Click event
|
87858
87845
|
|