rename production to release directory, rebuild assets

This commit is contained in:
Harshavardhana
2021-04-25 16:43:12 -07:00
parent f7feff8665
commit d825d92499
19 changed files with 86 additions and 76 deletions

View File

@@ -17,6 +17,17 @@
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
let delay = [0, 400]
function handleLoader(i) {
if (i < 2) {
setTimeout(function() {
document.querySelector(".page-load").classList.add("pl-" + i)
handleLoader(i + 1)
}, delay[i])
}
}
const hideLoader = () => handleLoader(0)
export default hideLoader