snapshotformats.js 326 B

12345678910111213141516
  1. /*
  2. * GitPHP snapshot formats
  3. *
  4. * Passes snapshot formats from config to other modules
  5. *
  6. * @author Christopher Han <xiphux@gmail.com>
  7. * @copyright Copyright (c) 2012 Christopher Han
  8. * @package GitPHP
  9. * @subpackage Javascript
  10. */
  11. define(['module'],
  12. function (module) {
  13. return module.config().formats || null;
  14. }
  15. );