Skip to content

Commit

Permalink
fix lintin
Browse files Browse the repository at this point in the history
  • Loading branch information
rehez committed Aug 15, 2016
1 parent d0c3731 commit 8b26904
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion electron/js/menu/context.js
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ window.addEventListener('customContextMenu', function(e) {
const element = e.target;
customContext.fromElement(element).popup(remote.getCurrentWindow());
e.stopPropagation();
}, true)
}, true);


function savePicture(fileName, url) {
Expand Down
2 changes: 1 addition & 1 deletion electron/js/menu/custom-context.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

'use strict';

const {remote, ipcRenderer} = require('electron');
const {remote} = require('electron');
const Menu = remote.Menu;
const MenuItem = remote.MenuItem;

Expand Down

0 comments on commit 8b26904

Please sign in to comment.