Browse Source

fix conditional for system actions in default theme

sisyphus
Dustin Falgout 8 years ago
parent
commit
101dc00b9a
  1. 2
      themes/antergos/js/greeter.js

2
themes/antergos/js/greeter.js

@ -567,7 +567,7 @@ class AntergosTheme {
<i class="fa fa-${actions[ action ]}"></i>
</a>`;
if ( lightdm[ cmd ]() ) {
if ( true === lightdm[ cmd ] ) {
$( template ).appendTo( $( this.$actions_container ) ).click( this.system_action_handler );
}
} // END for (var [action, icon] of actions)

Loading…
Cancel
Save