| 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);
|
|
|