helios.js 656 B

123456789101112131415161718192021222324252627
  1. require.config({
  2. paths: {
  3. 'jquery-ui': require.toUrl('amber_lib/jquery-ui/ui/minified/jquery-ui.min')
  4. },
  5. shim: {
  6. 'jquery-ui': {
  7. deps: [ 'jquery' ]
  8. },
  9. 'amber_lib/bootstrap/js/bootstrap': {
  10. deps: [ 'jquery', 'css!amber_lib/bootstrap/css/bootstrap' ]
  11. },
  12. 'amber_lib/jquery-tabby/jquery.textarea': {
  13. deps: [ 'jquery' ]
  14. }
  15. }
  16. });
  17. define([
  18. './helpers', // pre-fetch, dep of ./deploy
  19. './deploy', // pre-fetch, dep of ./lang
  20. './lang',
  21. './codemirror',
  22. './devel-inner', // pre-fetch, dep of ./helios-inner
  23. './helios-inner',
  24. 'css!helios/res/helios',
  25. 'css!helios/res/helios-niflheim'
  26. ], function (smalltalk) { return smalltalk; });