Skip to content

Instantly share code, notes, and snippets.

View doug1n's full-sized avatar
🪲
fixing bugs

Douglas Gomes doug1n

🪲
fixing bugs
View GitHub Profile
@doug1n
doug1n / fluigMostraLoading.js
Last active November 26, 2019 19:56
Show loading and execute any function.
/*
* @function mostraLoading Show loading and execute any function.
* @param {Object} loading referência a variavel de loading que será utilizada
* @param {Function} anyFunction function to execute while loading shows.
*/
function mostraLoading(loading, anyFunction, ...anyParam) {
loading.show();
setTimeout(function () {
anyFunction(...anyParam);
loading.hide();