helios.js 617 B

1234567891011121314151617181920212223242526
  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!amber_css/helios'
  25. ], function (smalltalk) { return smalltalk; });