From 25184a3901f96e3c4fea94ed0bd135fbe7597148 Mon Sep 17 00:00:00 2001 From: sdtsui Date: Sun, 13 Aug 2017 10:24:51 -0700 Subject: Move global modals into own pod, inside components/modals --- ui/app/components/modals/index.js | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 ui/app/components/modals/index.js (limited to 'ui/app/components/modals/index.js') diff --git a/ui/app/components/modals/index.js b/ui/app/components/modals/index.js new file mode 100644 index 000000000..23b432b7c --- /dev/null +++ b/ui/app/components/modals/index.js @@ -0,0 +1,9 @@ +const Modal = require('./modal') +const BuyModal = require('./buy-modal') +// const h = require('account-options') +// const h = require('account-details') + +module.exports = { + Modal, + BuyModal, +} \ No newline at end of file -- cgit From 71b2dd290b2bbf3107d06d0616ec8858d21b44da Mon Sep 17 00:00:00 2001 From: sdtsui Date: Sun, 20 Aug 2017 19:10:49 -0700 Subject: Enhance global modal to handle Buy, Edit, and Details Modals --- ui/app/components/modals/index.js | 4 ---- 1 file changed, 4 deletions(-) (limited to 'ui/app/components/modals/index.js') diff --git a/ui/app/components/modals/index.js b/ui/app/components/modals/index.js index 23b432b7c..e2e367af0 100644 --- a/ui/app/components/modals/index.js +++ b/ui/app/components/modals/index.js @@ -1,9 +1,5 @@ const Modal = require('./modal') -const BuyModal = require('./buy-modal') -// const h = require('account-options') -// const h = require('account-details') module.exports = { Modal, - BuyModal, } \ No newline at end of file -- cgit From e7b3ef0708290a81dad5c469adaa6fab3f1c45b5 Mon Sep 17 00:00:00 2001 From: Dan Date: Tue, 29 Aug 2017 12:20:48 -0230 Subject: Lint fixes --- ui/app/components/modals/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/app/components/modals/index.js') diff --git a/ui/app/components/modals/index.js b/ui/app/components/modals/index.js index e2e367af0..1db1d33d4 100644 --- a/ui/app/components/modals/index.js +++ b/ui/app/components/modals/index.js @@ -2,4 +2,4 @@ const Modal = require('./modal') module.exports = { Modal, -} \ No newline at end of file +} -- cgit