Add missing semicolons noted by jslint

Taken from a patch by Lex Hider on the mailing list
This commit is contained in:
Dan Winship
2010-03-15 09:50:05 -04:00
parent 543a41bfea
commit 3ce89e3c80
16 changed files with 52 additions and 52 deletions

View File

@ -39,7 +39,7 @@ const TRAY_BORDER_WIDTH = 0;
const HOT_CORNER_ACTIVATION_TIMEOUT = 0.5;
const STANDARD_TRAY_ICON_ORDER = ['keyboard', 'volume', 'bluetooth', 'network', 'battery']
const STANDARD_TRAY_ICON_ORDER = ['keyboard', 'volume', 'bluetooth', 'network', 'battery'];
const STANDARD_TRAY_ICON_IMPLEMENTATIONS = {
'bluetooth-applet': 'bluetooth',
'gnome-volume-control-applet': 'volume',
@ -130,7 +130,7 @@ TextShadower.prototype = {
child.allocate(childBox, flags);
}
}
}
};
/**
* AppPanelMenu:
@ -287,7 +287,7 @@ AppPanelMenu.prototype = {
this.emit('changed');
}
}
};
Signals.addSignalMethods(AppPanelMenu.prototype);