Fix indent
This commit is contained in:
parent
92e8912256
commit
5a9da781a8
@ -80,17 +80,17 @@ BrowserUIShowHideObserver.prototype = {
|
|||||||
{
|
{
|
||||||
aMutations.forEach(function(aMutation) {
|
aMutations.forEach(function(aMutation) {
|
||||||
try {
|
try {
|
||||||
switch (aMutation.type)
|
switch (aMutation.type)
|
||||||
{
|
{
|
||||||
case 'childList':
|
case 'childList':
|
||||||
if (aMutation.target == this.box)
|
if (aMutation.target == this.box)
|
||||||
this.owner.browser.treeStyleTab.updateFloatingTabbar(TreeStyleTabConstants.kTABBAR_UPDATE_BY_WINDOW_RESIZE);
|
this.owner.browser.treeStyleTab.updateFloatingTabbar(TreeStyleTabConstants.kTABBAR_UPDATE_BY_WINDOW_RESIZE);
|
||||||
return;
|
return;
|
||||||
|
|
||||||
case 'attributes':
|
case 'attributes':
|
||||||
this.onAttributeModified(aMutation, aObserver);
|
this.onAttributeModified(aMutation, aObserver);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
catch(error) {
|
catch(error) {
|
||||||
this.dumpMutation(aMutation, 'BrowserUIShowHideObserver_onMutation(error)');
|
this.dumpMutation(aMutation, 'BrowserUIShowHideObserver_onMutation(error)');
|
||||||
@ -119,9 +119,9 @@ BrowserUIShowHideObserver.prototype = {
|
|||||||
var attributeInformation = '';
|
var attributeInformation = '';
|
||||||
if (aMutation.attributeName)
|
if (aMutation.attributeName)
|
||||||
attributeInformation = ' / ' +
|
attributeInformation = ' / ' +
|
||||||
aMutation.attributeName + ', ' +
|
aMutation.attributeName + ', ' +
|
||||||
aMutation.oldValue + ' => ' +
|
aMutation.oldValue + ' => ' +
|
||||||
target.getAttribute(aMutation.attributeName);
|
target.getAttribute(aMutation.attributeName);
|
||||||
dump(aDescription + ' ' + targetInformation + attributeInformation + '\n');
|
dump(aDescription + ' ' + targetInformation + attributeInformation + '\n');
|
||||||
},
|
},
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user