commitactivity.js 421 B

12345678910111213141516
  1. /*
  2. * GitPHP Javascript commit graph loader
  3. *
  4. * Initialized script modules used on the commit activity graph
  5. *
  6. * @author Christopher Han <xiphux@gmail.com>
  7. * @copyright Copyright (c) 2012 Christopher Han
  8. * @package GitPHP
  9. * @subpackage Javascript
  10. */
  11. define(["jquery", "modules/commitactivitygraph", "common"], function($, commitActivityGraph) {
  12. $(function() {
  13. commitActivityGraph.init('div#graph');
  14. });
  15. });