aboutsummaryrefslogtreecommitdiff
path: root/includes/js/dijit/templates/Dialog.html
diff options
context:
space:
mode:
Diffstat (limited to 'includes/js/dijit/templates/Dialog.html')
-rw-r--r--includes/js/dijit/templates/Dialog.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/includes/js/dijit/templates/Dialog.html b/includes/js/dijit/templates/Dialog.html
new file mode 100644
index 0000000..f3a2e5c
--- /dev/null
+++ b/includes/js/dijit/templates/Dialog.html
@@ -0,0 +1,9 @@
+<div class="dijitDialog" tabindex="-1" waiRole="dialog" waiState="labelledby-${id}_title">
+ <div dojoAttachPoint="titleBar" class="dijitDialogTitleBar">
+ <span dojoAttachPoint="titleNode" class="dijitDialogTitle" id="${id}_title">${title}</span>
+ <span dojoAttachPoint="closeButtonNode" class="dijitDialogCloseIcon" dojoAttachEvent="onclick: onCancel">
+ <span dojoAttachPoint="closeText" class="closeText">x</span>
+ </span>
+ </div>
+ <div dojoAttachPoint="containerNode" class="dijitDialogPaneContent"></div>
+</div>