mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 23:08:39 +09:00
Using "function()" in browser.js - consistency with the surrounding code
Issue #430
This commit is contained in:
parent
829ce72d6d
commit
083436313c
1 changed files with 3 additions and 3 deletions
|
|
@ -333,14 +333,14 @@ var gFindBarSettings = {
|
|||
prefName: "accessibility.typeaheadfind",
|
||||
findAsYouType: null,
|
||||
|
||||
init() {
|
||||
init: function() {
|
||||
window.messageManager.addMessageListener(this.messageName, this);
|
||||
|
||||
gPrefService.addObserver(this.prefName, this, false);
|
||||
this.writeFindAsYouType();
|
||||
},
|
||||
|
||||
uninit() {
|
||||
uninit: function() {
|
||||
window.messageManager.removeMessageListener(this.messageName, this);
|
||||
|
||||
try {
|
||||
|
|
@ -362,7 +362,7 @@ var gFindBarSettings = {
|
|||
this.findAsYouType = gPrefService.getBoolPref(this.prefName);
|
||||
},
|
||||
|
||||
receiveMessage(aMessage) {
|
||||
receiveMessage: function(aMessage) {
|
||||
switch (aMessage.name) {
|
||||
case this.messageName:
|
||||
// If the find bar for chrome window's context is not yet alive,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue