Hydra HelloWorld

HelloWorld con Hydra

by rulokc

HTML

<script src="//cdnjs.cloudflare.com/ajax/libs/hydra.js/3.1.2/hydra.min.js"></script>
<script src="https://github.com/tcorral/Hydra_Extensions/raw/master/jQuery/src/DOM.js"></script>
<script src="https://github.com/tcorral/Hydra_Extensions/raw/master/jQuery/src/Ajax.js"></script>
<script src="https://github.com/tcorral/Hydra_Extensions/raw/master/jQuery/src/Events.js"></script>
<h1 id="helloworld"></h1>

JavaScript

Hydra.module.register('helloworld', function(bus) {
  return {
    init: function() {
      Hydra.dom.byId('helloworld').html('Hello World!');
    }
  };
});

$(document).ready(function() {
  Hydra.module.start('helloworld');
});