mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 07:47:32 +09:00
[PALEMOON] Localize a private copy of the pre-richlistbox autocomplete ksmodule
This commit is contained in:
parent
cc8e59b113
commit
51bef58e0b
3 changed files with 298 additions and 0 deletions
|
|
@ -35,6 +35,7 @@ Cu.import("resource://gre/modules/Services.jsm");
|
|||
["OS", "resource://gre/modules/osfile.jsm"],
|
||||
["LoginManagerParent", "resource://gre/modules/LoginManagerParent.jsm"],
|
||||
["FormValidationHandler", "resource:///modules/FormValidationHandler.jsm"],
|
||||
["AutoCompletePopup", "resource:///modules/AutoCompletePopup.jsm"],
|
||||
["DateTimePickerHelper", "resource://gre/modules/DateTimePickerHelper.jsm"],
|
||||
].forEach(([name, resource]) => XPCOMUtils.defineLazyModuleGetter(this, name, resource));
|
||||
|
||||
|
|
@ -405,6 +406,8 @@ BrowserGlue.prototype = {
|
|||
#endif
|
||||
FormValidationHandler.init();
|
||||
|
||||
AutoCompletePopup.init();
|
||||
|
||||
LoginManagerParent.init();
|
||||
|
||||
Services.obs.notifyObservers(null, "browser-ui-startup-complete", "");
|
||||
|
|
@ -515,6 +518,7 @@ BrowserGlue.prototype = {
|
|||
webrtcUI.uninit();
|
||||
#endif
|
||||
FormValidationHandler.uninit();
|
||||
AutoCompletePopup.uninit();
|
||||
this._dispose();
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue