summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/projects/commit/init_commit_comments_button.js
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/projects/commit/init_commit_comments_button.js')
-rw-r--r--app/assets/javascripts/projects/commit/init_commit_comments_button.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/app/assets/javascripts/projects/commit/init_commit_comments_button.js b/app/assets/javascripts/projects/commit/init_commit_comments_button.js
new file mode 100644
index 00000000000..d70f7cb65f3
--- /dev/null
+++ b/app/assets/javascripts/projects/commit/init_commit_comments_button.js
@@ -0,0 +1,18 @@
+import Vue from 'vue';
+import CommitCommentsButton from './components/commit_comments_button.vue';
+
+export default function initCommitCommentsButton() {
+ const el = document.querySelector('#js-commit-comments-button');
+
+ if (!el) {
+ return false;
+ }
+
+ const { commentsCount } = el.dataset;
+
+ return new Vue({
+ el,
+ render: (createElement) =>
+ createElement(CommitCommentsButton, { props: { commentsCount: Number(commentsCount) } }),
+ });
+}