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