Config.in 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. config BR2_PACKAGE_ANGULARJS
  2. bool "angularjs"
  3. help
  4. AngularJS web application framework.
  5. http://angularjs.org
  6. if BR2_PACKAGE_ANGULARJS
  7. menuconfig BR2_ANGULARJS_MODULES
  8. bool "angularjs modules"
  9. help
  10. Select which modules to install. If disabled, all modules
  11. will be installed.
  12. if BR2_ANGULARJS_MODULES
  13. config BR2_ANGULARJS_MODULE_ANIMATE
  14. bool "animate"
  15. help
  16. The ngAnimate module provides support for CSS-based animations
  17. (keyframes and transitions) as well as JavaScript-based animations
  18. via callback hooks. Animations are not enabled by default, however,
  19. by including ngAnimate then the animation hooks are enabled for an
  20. Angular app.
  21. config BR2_ANGULARJS_MODULE_ARIA
  22. bool "aria"
  23. help
  24. The ngAria module provides support for common ARIA attributes that
  25. convey state or semantic information about the application for users
  26. of assistive technologies, such as screen readers.
  27. config BR2_ANGULARJS_MODULE_COOKIES
  28. bool "cookies"
  29. help
  30. The ngCookies module provides a convenient wrapper for reading and
  31. writing browser cookies.
  32. config BR2_ANGULARJS_MODULE_MESSAGE_FORMAT
  33. bool "message-format"
  34. help
  35. The ngMessageFormat module is used recognize MessageFormat extensions
  36. in interpolation expressions.
  37. config BR2_ANGULARJS_MODULE_MESSAGES
  38. bool "messages"
  39. help
  40. The ngMessages module provides enhanced support for displaying
  41. messages within templates (typically within forms or when rendering
  42. message objects that return key/value data).
  43. config BR2_ANGULARJS_MODULE_RESOURCE
  44. bool "resource"
  45. help
  46. The ngResource module provides interaction support with RESTful
  47. services via the $resource service.
  48. config BR2_ANGULARJS_MODULE_ROUTE
  49. bool "route"
  50. help
  51. The ngRoute module provides routing and deeplinking services and
  52. directives for angular apps.
  53. config BR2_ANGULARJS_MODULE_SANITIZE
  54. bool "sanitize"
  55. help
  56. The ngSanitize module provides functionality to sanitize HTML.
  57. config BR2_ANGULARJS_MODULE_TOUCH
  58. bool "touch"
  59. help
  60. The ngTouch module provides touch events and other helpers for
  61. touch-enabled devices. The implementation is based on jQuery Mobile
  62. touch event handling (jquerymobile.com).
  63. endif
  64. endif