tree.js 385 B

12345678910111213141516
  1. /*
  2. * GitPHP Javascript tree loader
  3. *
  4. * Initializes script modules used on the tree page
  5. *
  6. * @author Christopher Han <xiphux@gmail.com>
  7. * @copyright Copyright (c) 2011 Christopher Han
  8. * @package GitPHP
  9. * @subpackage Javascript
  10. */
  11. define(["jquery", "modules/treedrilldown", "common"], function($, treeDrill) {
  12. $(function() {
  13. treeDrill.init($('table.treeTable'));
  14. });
  15. });