From 63b8543d73f4954522229416501f3e87a61c245f Mon Sep 17 00:00:00 2001 From: Geoffrey Booth Date: Sun, 25 Feb 2018 01:09:52 -0800 Subject: [PATCH] Update output --- docs/v2/index.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/v2/index.html b/docs/v2/index.html index 3a5b34c3..0bd3244e 100644 --- a/docs/v2/index.html +++ b/docs/v2/index.html @@ -4859,7 +4859,7 @@ Object.defineProperty screen, 'height', get: -> this.width / this.ratio set: (val) -> - this.width = val / this.ratio + this.width = val * this.ratio
screen =
   width: 1200
@@ -4869,7 +4869,7 @@ Object.defineProperty screen, 'height',
   get: ->
     this.width / this.ratio
   set: (val) ->
-    this.width = val / this.ratio
+    this.width = val * this.ratio
 
@@ -4885,7 +4885,7 @@ Object.defineProperty(screen, 'height', { return this.width / this.ratio; }, set: function(val) { - return this.width = val / this.ratio; + return this.width = val * this.ratio; } }); @@ -4901,7 +4901,7 @@ Object.defineProperty(screen, 'height', { return this.width / this.ratio; }, set: function(val) { - return this.width = val / this.ratio; + return this.width = val * this.ratio; } });