diff options
author | Cheng-Han, Wu | 2016-01-31 15:30:10 -0600 |
---|---|---|
committer | Cheng-Han, Wu | 2016-01-31 15:30:10 -0600 |
commit | eb4cb3f52f9ff810c08b4ee745997f1601b4d9fc (patch) | |
tree | b38a24b09597d821e6749af87e8a293973e96361 | |
parent | 3c2a2a348b9df16ce22e9385adf12f2f51ddec58 (diff) |
Fixed supportCharts name not match real syntax
Diffstat (limited to '')
-rw-r--r-- | public/js/index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/public/js/index.js b/public/js/index.js index e49985e6..80322c4e 100644 --- a/public/js/index.js +++ b/public/js/index.js @@ -26,7 +26,7 @@ var updateViewDebounce = 200; var cursorActivityDebounce = 50; var cursorAnimatePeriod = 100; var supportCodeModes = ['javascript', 'htmlmixed', 'htmlembedded', 'css', 'xml', 'clike', 'clojure', 'ruby', 'python', 'shell', 'php', 'sql', 'coffeescript', 'yaml', 'jade', 'lua', 'cmake', 'nginx', 'perl', 'sass', 'r', 'dockerfile']; -var supportCharts = ['sequence-diagram', 'flow-chart', 'graphviz']; +var supportCharts = ['sequence', 'flow', 'graphviz']; var supportHeaders = [ { text: '# h1', |