<?php if (isset($this->response)) { ?>
    <h3><?=$this->response?></h3>
<?php } else { ?>
    <div id="sales_goals_app"></div>
    <script type="text/javascript" src="<?=$this->frontendDistroCommonScriptsFile?>"></script>
    <script type="text/javascript" src="<?=$this->frontendDistroLoadUserFeaturesBeforeScriptsFile?>"></script>
    <script type="text/javascript">
        var salesGoalsRootDomElement = document.getElementById('sales_goals_app');
    
        window.loadUserFeaturesBeforeScripts(
            <?php echo json_encode($this->options); ?>,
            ['<?=$this->frontendDistroJsFile?>'],
            function () { initOASalesGoals(salesGoalsRootDomElement); }
        );
    </script>
<?php } ?> 
