bootstrap.js 259 B

123456789101112
  1. require.config({
  2. paths: {
  3. 'jquery-colorpicker': '../addons/customcharts/js/jquery.colorpicker.min',
  4. },
  5. shim: {
  6. 'jquery-colorpicker': {
  7. deps: ['jquery'],
  8. exports: '$.fn.extend'
  9. }
  10. }
  11. });