Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(303)

Unified Diff: ports/gimp-app/Xsdl.js

Issue 1415743013: Run jshint over all JavaScript files (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@repo_conf
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ports/gforth/gforth.js ('k') | ports/gimp-app/background.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ports/gimp-app/Xsdl.js
diff --git a/ports/gimp-app/Xsdl.js b/ports/gimp-app/Xsdl.js
index d0d76ec07d21214f19b8b09dab4860eeb958e175..f14ce8445b55c6f243c22bd003074884bfd3b2a9 100644
--- a/ports/gimp-app/Xsdl.js
+++ b/ports/gimp-app/Xsdl.js
@@ -4,6 +4,10 @@
* found in the LICENSE file.
*/
+/* globals NaClTerm, NaClProcessManager */
+
+'use strict';
+
NaClTerm.nmf = 'Xsdl.nmf';
NaClTerm.argv = [
'-screen', '1140x810x32', '-ac', '-br', '-noreset', ':42'
@@ -31,7 +35,7 @@ function startDemo() {
window.close();
});
});
- window.setTimeout(function(){document.title = 'Gimp'}, 25000);
+ window.setTimeout(function() { document.title = 'Gimp'; }, 25000);
}
function startWindowManager() {
@@ -45,4 +49,4 @@ function startWindowManager() {
}
startDemo();
-window.setTimeout(function() {startWindowManager()}, 5000);
+window.setTimeout(startWindowManager, 5000);
« no previous file with comments | « ports/gforth/gforth.js ('k') | ports/gimp-app/background.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698