Skip to content

Commit

Permalink
Added missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatasfreitasv committed Sep 23, 2015
1 parent 5ba7400 commit a2e3c01
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions app/vendor/electron_boilerplate/window_state.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ var jetpack = require('fs-jetpack');
module.exports = function (name, defaults) {

var userDataDir = jetpack.cwd(app.getPath('userData'));
var stateStoreFile = 'window-state-' + name +'.json'
var stateStoreFile = 'window-state-' + name +'.json';

var state = userDataDir.read(stateStoreFile, 'json') || {
width: defaults.width,
Expand All @@ -31,11 +31,11 @@ module.exports = function (name, defaults) {
};

return {
get x() { return state.x },
get y() { return state.y },
get width() { return state.width },
get height() { return state.height },
get isMaximized() { return state.isMaximized },
get x() { return state.x; },
get y() { return state.y; },
get width() { return state.width; },
get height() { return state.height; },
get isMaximized() { return state.isMaximized; },
saveState: saveState
};
};

0 comments on commit a2e3c01

Please sign in to comment.