(function( inDevelopment ) {
function launch() {
if( inDevelopment ) {
return;
}
// TODO
}
window.addEventListner( 'load', launch );
}( true ));
(function( inDevelopment ) {
function launch() {
if( inDevelopment ) {
return;
}
// TODO
}
window.addEventListner( 'load', launch );
}( true ));