Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: reformatting

...

After combining the single parts described before, the full minimun JavaScript code in backend templates looks like

Code Block
languagejs
linenumberstrue
<script type="text/javascript" src="scripts/jquery/jquery.js"></script>
<script type="text/javascript" src="scripts/jquery/jquery-ui.js"></script>
<script type="text/javascript" src="scripts/contenido.js"></script>
<script type="text/javascript" src="scripts/general.js"></script>
<script type="text/javascript">
function(Con, $) {
    Con.sid = "";
    $.extend(Con.cfg, {
        ...
    });
)(Con, Con.$);
</script>
<script type="text/javascript" src="scripts/startup.js"></script>

...