diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index a9c26ab97..a718fd428 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -1884,15 +1884,17 @@ var AppFolderPopup = class AppFolderPopup { direction = St.DirectionType.TAB_FORWARD; break; case Clutter.Right: - direction = isLtr ? St.DirectionType.TAB_FORWARD : - St.DirectionType.TAB_BACKWARD; + direction = isLtr + ? St.DirectionType.TAB_FORWARD + : St.DirectionType.TAB_BACKWARD; break; case Clutter.Up: direction = St.DirectionType.TAB_BACKWARD; break; case Clutter.Left: - direction = isLtr ? St.DirectionType.TAB_BACKWARD : - St.DirectionType.TAB_FORWARD; + direction = isLtr + ? St.DirectionType.TAB_BACKWARD + : St.DirectionType.TAB_FORWARD; break; default: return Clutter.EVENT_PROPAGATE; diff --git a/js/ui/components/autorunManager.js b/js/ui/components/autorunManager.js index 013521baf..cb0c6b6a3 100644 --- a/js/ui/components/autorunManager.js +++ b/js/ui/components/autorunManager.js @@ -117,9 +117,9 @@ var ContentTypeDiscoverer = class { let hotplugSniffer = new HotplugSniffer(); hotplugSniffer.SniffURIRemote(root.get_uri(), - ([contentTypes]) => { - this._emitCallback(mount, contentTypes); - }); + ([contentTypes]) => { + this._emitCallback(mount, contentTypes); + }); } } diff --git a/js/ui/kbdA11yDialog.js b/js/ui/kbdA11yDialog.js index ba3576599..f5ffccce7 100644 --- a/js/ui/kbdA11yDialog.js +++ b/js/ui/kbdA11yDialog.js @@ -28,23 +28,23 @@ class KbdA11yDialog extends GObject.Object { if (whatChanged & Clutter.KeyboardA11yFlags.SLOW_KEYS_ENABLED) { key = KEY_SLOW_KEYS_ENABLED; enabled = (newFlags & Clutter.KeyboardA11yFlags.SLOW_KEYS_ENABLED) > 0; - title = enabled ? - _("Slow Keys Turned On") : - _("Slow Keys Turned Off"); + title = enabled + ? _("Slow Keys Turned On") + : _("Slow Keys Turned Off"); body = _("You just held down the Shift key for 8 seconds. This is the shortcut " + "for the Slow Keys feature, which affects the way your keyboard works."); } else if (whatChanged & Clutter.KeyboardA11yFlags.STICKY_KEYS_ENABLED) { key = KEY_STICKY_KEYS_ENABLED; enabled = (newFlags & Clutter.KeyboardA11yFlags.STICKY_KEYS_ENABLED) > 0; - title = enabled ? - _("Sticky Keys Turned On") : - _("Sticky Keys Turned Off"); - body = enabled ? - _("You just pressed the Shift key 5 times in a row. This is the shortcut " + - "for the Sticky Keys feature, which affects the way your keyboard works.") : - _("You just pressed two keys at once, or pressed the Shift key 5 times in a row. " + - "This turns off the Sticky Keys feature, which affects the way your keyboard works."); + title = enabled + ? _("Sticky Keys Turned On") + : _("Sticky Keys Turned Off"); + body = enabled + ? _("You just pressed the Shift key 5 times in a row. This is the shortcut " + + "for the Sticky Keys feature, which affects the way your keyboard works.") + : _("You just pressed two keys at once, or pressed the Shift key 5 times in a row. " + + "This turns off the Sticky Keys feature, which affects the way your keyboard works."); } else { return; }