_sample.haml 639 B

12345678910111213141516171819202122232425262728293031323334
  1. .container
  2. %h1.title #{data.samples[id].title}
  3. .chart
  4. #chart
  5. #ace-error
  6. .sourcecode.margin-medium-v.margin-small-h
  7. %h3 # #{id}.js
  8. #javascript-editor.c3-editor
  9. = js_as_plain id
  10. - if defined? other_css
  11. .sourcecode
  12. %h3 # #{other_css}
  13. %pre
  14. %code.css
  15. = css_as_plain other_css
  16. - if defined? other_files
  17. - other_files.each do |f|
  18. .sourcecode
  19. %h3 # #{f}
  20. %pre
  21. %code.html
  22. = data_as_plain f
  23. = partial :footer
  24. = partial :script
  25. = partial :sample_editor, locals: { type: 'javascript' }
  26. = javascript_include_tag "samples/#{id}.js"