diff options
| author | Nathan Dinsmore <nathan@users.noreply.github.com> | 2015-06-18 15:33:36 -0400 |
|---|---|---|
| committer | Nathan Dinsmore <nathan@users.noreply.github.com> | 2015-06-18 15:33:36 -0400 |
| commit | bae22f08044f01adba15608d3885e84e173c8889 (patch) | |
| tree | c45f3a4b3262fa9cc7b1cac448057eb4dc8a72fc | |
| parent | 82197c7a8c1835048fb6a787c41845049c89ca0c (diff) | |
| download | snap-bae22f08044f01adba15608d3885e84e173c8889.tar.gz snap-bae22f08044f01adba15608d3885e84e173c8889.zip | |
Add braces
| -rw-r--r-- | morphic.js | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2212,7 +2212,7 @@ Morph.prototype.init = function (noDraw) { this.isTemplate = false; this.acceptsDrops = false; this.noticesTransparentClick = false; - if (!noDraw) this.drawNew(); + if (!noDraw) { this.drawNew(); } this.fps = 0; this.customContextMenu = null; this.lastTime = Date.now(); |
