diff options
author | New Tobin Paradigm <email@mattatobin.com> | 2018-04-16 08:30:04 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-16 08:30:04 -0400 |
commit | a557bfae78557c5134874683fc7a8121f6b5deb1 (patch) | |
tree | 357e7fac303646ee5aafd80e45ca6f5d36dfde4f /application/palemoon/base/content/browser.xul | |
parent | ba80720469e27d3d7ae6f1095b3c187207adc051 (diff) | |
parent | f8086ef486f296515958d2254873b902fdab3db1 (diff) | |
download | UXP-a557bfae78557c5134874683fc7a8121f6b5deb1.tar UXP-a557bfae78557c5134874683fc7a8121f6b5deb1.tar.gz UXP-a557bfae78557c5134874683fc7a8121f6b5deb1.tar.lz UXP-a557bfae78557c5134874683fc7a8121f6b5deb1.tar.xz UXP-a557bfae78557c5134874683fc7a8121f6b5deb1.zip |
Merge pull request #178 from janekptacijarabaci/html_input_datetime_3
[PALEMOON] [Frontend vs Backend] HTML - input - datetime
Diffstat (limited to 'application/palemoon/base/content/browser.xul')
-rw-r--r-- | application/palemoon/base/content/browser.xul | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/application/palemoon/base/content/browser.xul b/application/palemoon/base/content/browser.xul index df152bbaa..8a79890cd 100644 --- a/application/palemoon/base/content/browser.xul +++ b/application/palemoon/base/content/browser.xul @@ -132,6 +132,20 @@ <!-- for url bar autocomplete --> <panel type="autocomplete-richlistbox" id="PopupAutoCompleteRichResult" noautofocus="true" hidden="true"/> + <!-- for date/time picker. consumeoutsideclicks is set to never, so that + clicks on the anchored input box are never consumed. --> + <panel id="DateTimePickerPanel" + type="arrow" + hidden="true" + orient="vertical" + noautofocus="true" + norolluponanchor="true" + consumeoutsideclicks="never" + level="parent" + tabspecific="true"> + <iframe id="dateTimePopupFrame"/> + </panel> + <!-- for invalid form error message --> <panel id="invalid-form-popup" type="arrow" orient="vertical" noautofocus="true" hidden="true" level="parent"> <description/> @@ -946,7 +960,8 @@ flex="1" contenttooltip="aHTMLTooltip" tabcontainer="tabbrowser-tabs" contentcontextmenu="contentAreaContextMenu" - autocompletepopup="PopupAutoComplete"/> + autocompletepopup="PopupAutoComplete" + datetimepicker="DateTimePickerPanel"/> <chatbar id="pinnedchats" layer="true" mousethrough="always" hidden="true"/> <statuspanel id="statusbar-display" inactive="true"/> </vbox> |