Navigation Menu

Skip to content

Commit

Permalink
Update MainMenu.js
Browse files Browse the repository at this point in the history
Move bracket
  • Loading branch information
mgambill committed Feb 22, 2017
1 parent c5298d6 commit 322d89a
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions app/js/system/MainMenu.js
Expand Up @@ -46,8 +46,7 @@ class MainMenu {
(filePaths) => {
var filename = filePaths[0]
var r = this.settings.get('recent') || []
if (r.indexOf(filename.toLowerCase()) === -1)
{
if (r.indexOf(filename.toLowerCase()) === -1) {
r.push(filePaths[0].toLowerCase());
this.settings.set('recent', r)
}
Expand Down

0 comments on commit 322d89a

Please sign in to comment.