languagedist.js 436 B

12345678910111213141516
  1. /*
  2. * GitPHP Javascript language distribution graph loader
  3. *
  4. * Initialized script modules used on the language distribution 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/languagedistgraph", "common"], function($, languageDistGraph) {
  12. $(function() {
  13. languageDistGraph.init('div#graph');
  14. });
  15. });