summaryrefslogtreecommitdiffstats
path: root/client/components/main/layouts.jade
diff options
context:
space:
mode:
authorMaxime Quandalle <maxime@quandalle.com>2015-08-25 23:39:00 +0200
committerMaxime Quandalle <maxime@quandalle.com>2015-08-26 16:49:41 +0200
commit9faaf07e0257f622abcaa365408fa836a1cbdea8 (patch)
tree8d214055307f66534d442bc2be8493f38a7e0334 /client/components/main/layouts.jade
parent46a5e08aa7556b57d6c9b782eb1500811f2c3e6d (diff)
downloadwekan-9faaf07e0257f622abcaa365408fa836a1cbdea8.tar.gz
wekan-9faaf07e0257f622abcaa365408fa836a1cbdea8.tar.bz2
wekan-9faaf07e0257f622abcaa365408fa836a1cbdea8.zip
Implement a modal system
I decided to create my own and not to use a community package, because 1. it's straightforward 2. it's better integrated with our others libs such as EscapeActions 3. monitoring third-party packages evolutions (eg, CSS changes) is a lot of work. This is basically the same rationale than for our other generic UI components such as the Popup/Popover. This commit also slightly modify the general layout to remove unnecessary wrapper DOM nodes.
Diffstat (limited to 'client/components/main/layouts.jade')
-rw-r--r--client/components/main/layouts.jade14
1 files changed, 10 insertions, 4 deletions
diff --git a/client/components/main/layouts.jade b/client/components/main/layouts.jade
index 2dd3b2f2..7a1fa8a2 100644
--- a/client/components/main/layouts.jade
+++ b/client/components/main/layouts.jade
@@ -11,10 +11,16 @@ template(name="userFormsLayout")
+Template.dynamic(template=content)
template(name="defaultLayout")
- #surface
- +header
- #content
- +Template.dynamic(template=content)
+ +header
+ #content
+ +Template.dynamic(template=content)
+ if (Modal.isOpen)
+ #modal
+ .overlay
+ .modal-content
+ a.modal-close-btn.js-close-modal
+ i.fa.fa-times-thin
+ +Template.dynamic(template=Modal.getTemplateName)
template(name="notFound")
+message(label='page-not-found')