Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Commit

Permalink
Comments amendments
Browse files Browse the repository at this point in the history
  • Loading branch information
szwacz committed Nov 1, 2017
1 parent 963fe53 commit 826342c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion src/app.js
Expand Up @@ -4,7 +4,10 @@ import "./stylesheets/main.css";
import "./helpers/context_menu.js";
import "./helpers/external_links.js";

// ----------------------------------------------------------------------------
// Everything below is just to show you how it works. You can delete all of it.
// ----------------------------------------------------------------------------

import { remote } from "electron";
import jetpack from "fs-jetpack";
import { greet } from "./hello_world/hello_world";
Expand All @@ -14,7 +17,7 @@ const app = remote.app;
const appDir = jetpack.cwd(app.getAppPath());

// Holy crap! This is browser window with HTML and stuff, but I can read
// here files from disk like it's node.js! Welcome to Electron world :)
// files from disk like it's node.js! Welcome to Electron world :)
const manifest = appDir.read("package.json", "json");

const osMap = {
Expand Down
2 changes: 1 addition & 1 deletion src/background.js
@@ -1,5 +1,5 @@
// This is main process of Electron, started as first thing when your
// app starts. This script is running through entire life of your application.
// app starts. It runs through entire life of your application.
// It doesn't have any windows which you can see on screen, but we can open
// window from here.

Expand Down

0 comments on commit 826342c

Please sign in to comment.