diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-15 17:55:14 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-15 17:55:14 +0200 |
commit | f8086ef486f296515958d2254873b902fdab3db1 (patch) | |
tree | 6823985998ac1aeda8623d3bd03663a1f10d8cfa /application/palemoon/base/content/browser.xul | |
parent | 4cfe5d84de0b8976f8bc5c005ae12ac3adf8f18a (diff) | |
download | UXP-f8086ef486f296515958d2254873b902fdab3db1.tar UXP-f8086ef486f296515958d2254873b902fdab3db1.tar.gz UXP-f8086ef486f296515958d2254873b902fdab3db1.tar.lz UXP-f8086ef486f296515958d2254873b902fdab3db1.tar.xz UXP-f8086ef486f296515958d2254873b902fdab3db1.zip |
[PALEMOON] [Frontend vs Backend] HTML - input - datetime
Issue #162
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> |