Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
33 righe
988 B
33 righe
988 B
<script type="text/javascript"> |
|
|
|
function require(script) { |
|
$.ajax({ |
|
url: script, |
|
dataType: "script", |
|
async: false, // <-- This is the key |
|
cache: true, |
|
success: function () { |
|
// all good... |
|
}, |
|
error: function () { |
|
throw new Error("Could not load script " + script); |
|
} |
|
}); |
|
} |
|
require("<?=BASE_HTTP?>assets/dist/js/bootstrap.min.js"); |
|
require("<?=BASE_HTTP?>js/sweetalert2.min.js"); |
|
require("<?=BASE_HTTP?>js/utils.js"); |
|
|
|
|
|
</script> |
|
|
|
<!-- Global site tag (gtag.js) - Google Analytics --> |
|
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-177764481-1"></script> |
|
<script> |
|
window.dataLayer = window.dataLayer || []; |
|
function gtag(){dataLayer.push(arguments);} |
|
gtag('js', new Date()); |
|
|
|
gtag('config', 'UA-177764481-1'); |
|
</script> |
|
|
|
|