Skip to content

Commit

Permalink
Fixed linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie Lee committed Apr 30, 2016
1 parent e3176ef commit 2b86c89
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"no-unused-vars": ["error", {"varsIgnorePattern": "utils"}]
},
"globals": {
"nw": true,
"utils": true
}
}
2 changes: 1 addition & 1 deletion app/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<div id="main-event">
<div class="content">
<h1>Boats Animator</h1>
<h2><span id="app-version"></span></h2>
<h2 id="app-version">Version</h2>
<p>Boats Animator is a free cross-platform stop motion animation program created using HTML5, JavaScript, and WebRTC. Want to help out? <a href="#" onclick="utils.openURL('https://github.com/BoatsAreRockable/animator/issues')">Report any issues</a> you come across or <a href="#" onclick="utils.openURL('https://github.com/BoatsAreRockable/animator/blob/master/CONTRIBUTING.md')">contribute code</a>!</p>
<button onclick="utils.openURL('https://github.com/BoatsAreRockable/animator/blob/master/LICENSE')"><i class="fa fa-legal"></i><span>License</span></button>
<button onclick="utils.openURL('https://github.com/BoatsAreRockable/animator/graphs/contributors')"><i class="fa fa-list-ul"></i><span>Credits</span></button>
Expand Down
2 changes: 0 additions & 2 deletions app/js/utils.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
const utils = (function() {
"use strict";

const win = nw.Window.get();

/**
* Open a URL in the user's browser.
*
Expand Down

0 comments on commit 2b86c89

Please sign in to comment.