Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2017-11-22 21:22:15 +0300
committerPhil Hughes <me@iamphill.com>2017-11-22 21:22:15 +0300
commit1374da4ca90ab1f8a0f539a2a95a45a1a2d1de14 (patch)
tree047ec44631d284bab18b16c3a6b4c1d4e6b88889 /app/assets/javascripts/render_gfm.js
parent48b65bb0ef5b7e70229491464bf69d910c27ed63 (diff)
Fixed import of render mermaid & render math methods
Diffstat (limited to 'app/assets/javascripts/render_gfm.js')
-rw-r--r--app/assets/javascripts/render_gfm.js19
1 files changed, 9 insertions, 10 deletions
diff --git a/app/assets/javascripts/render_gfm.js b/app/assets/javascripts/render_gfm.js
index bf6fc0ec305..cb935a6bea8 100644
--- a/app/assets/javascripts/render_gfm.js
+++ b/app/assets/javascripts/render_gfm.js
@@ -1,16 +1,15 @@
-/* eslint-disable func-names, space-before-function-paren, consistent-return, no-var, no-else-return, prefer-arrow-callback, max-len */
+import './render_math';
+import './render_mermaid';
// Render Gitlab flavoured Markdown
//
// Delegates to syntax highlight and render math & mermaid diagrams.
//
-(function() {
- $.fn.renderGFM = function() {
- this.find('.js-syntax-highlight').syntaxHighlight();
- this.find('.js-render-math').renderMath();
- this.find('.js-render-mermaid').renderMermaid();
- return this;
- };
+$.fn.renderGFM = function renderGFM() {
+ this.find('.js-syntax-highlight').syntaxHighlight();
+ this.find('.js-render-math').renderMath();
+ this.find('.js-render-mermaid').renderMermaid();
+ return this;
+};
- $(() => $('body').renderGFM());
-}).call(window);
+$(() => $('body').renderGFM());