From 929ad8648bca833824dd813498e029712ad592c0 Mon Sep 17 00:00:00 2001 From: George Drummond Date: Tue, 18 Jun 2019 14:32:25 -0400 Subject: [PATCH] Remove confirmation-popover --- js/components/confirmation_popover.js | 38 ------------------- templates/components/confirmation_button.html | 20 ---------- 2 files changed, 58 deletions(-) delete mode 100644 js/components/confirmation_popover.js delete mode 100644 templates/components/confirmation_button.html diff --git a/js/components/confirmation_popover.js b/js/components/confirmation_popover.js deleted file mode 100644 index f771a516..00000000 --- a/js/components/confirmation_popover.js +++ /dev/null @@ -1,38 +0,0 @@ -export default { - name: 'confirmation-popover', - - props: { - action: String, - btn_text: String, - btn_icon: String, - btn_class: String, - cancel_btn_text: String, - confirm_btn_text: String, - confirm_msg: String, - csrf_token: String, - name: String, - }, - - template: ` - - - - - `, -} diff --git a/templates/components/confirmation_button.html b/templates/components/confirmation_button.html deleted file mode 100644 index dc74ba2c..00000000 --- a/templates/components/confirmation_button.html +++ /dev/null @@ -1,20 +0,0 @@ -{% macro ConfirmationButton( - btn_text, - action, - btn_icon=None, - btn_class=None, - confirm_msg="Are you sure?", - confirm_btn="Confirm", - cancel_btn="Cancel") --%} - - -{%- endmacro %}