Skip to content

Commit

Permalink
Format with IDEA formatter, see #764
Browse files Browse the repository at this point in the history
  • Loading branch information
samreid committed Jul 5, 2019
1 parent 32f41f6 commit 74925a8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions templates/chipper-startup.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* The require.js part is wrapped in a phet.chipper.runRequireJS() method.
*/

(function() {
( function() {
'use strict';

// constants
Expand Down Expand Up @@ -68,13 +68,13 @@
}

// Attempt to start based on timeouts (in case other methods don't work). This will call attemptStart() at least once.
(function timeoutListener() {
( function timeoutListener() {
attemptStart();

if ( !started ) {
setTimeout( timeoutListener, 1000 );
}
})();
} )();

if ( !started ) {
// Attempt to start on window resizes
Expand All @@ -86,4 +86,4 @@
}
} );
}
})();
} )();

0 comments on commit 74925a8

Please sign in to comment.