Skip to content

Commit 33f1399

Browse files
committed
Fixing the return type of outerHeight and outerWidth
1 parent 9cc0032 commit 33f1399

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/scala/io/udash/wrappers/jquery/JQuery.scala

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -397,17 +397,17 @@ trait JQuery extends js.Object {
397397
* See: <a href="http://api.jquery.com/offsetParent/">jQuery Docs</a> */
398398
def offsetParent(): JQuery = js.native
399399

400-
/** Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin. Returns a number (without "px") representation of the value or null if called on an empty set of elements. <br/>
400+
/** Get the current computed height for the first element in the set of matched elements, including padding, border, and optionally margin. Returns a number (without "px") representation of the value or undef if called on an empty set of elements. <br/>
401401
* See: <a href="http://api.jquery.com/outerHeight/">jQuery Docs</a> */
402-
def outerHeight(includeMargin: Boolean = js.native): Double = js.native
402+
def outerHeight(includeMargin: Boolean = js.native): js.UndefOr[Double] = js.native
403403

404404
/** Set the CSS outer Height of each element in the set of matched elements. <br/>
405405
* See: <a href="http://api.jquery.com/outerHeight/">jQuery Docs</a> */
406406
def outerHeight(value: Int | Double | String): JQuery = js.native
407407

408408
/** Get the current computed width for the first element in the set of matched elements, including padding and border. <br/>
409409
* See: <a href="http://api.jquery.com/outerWidth/">jQuery Docs</a> */
410-
def outerWidth(includeMargin: Boolean = js.native): Double = js.native
410+
def outerWidth(includeMargin: Boolean = js.native): js.UndefOr[Double] = js.native
411411

412412
/** Set the CSS outer width of each element in the set of matched elements. <br/>
413413
* See: <a href="http://api.jquery.com/outerWidth/">jQuery Docs</a> */

0 commit comments

Comments
 (0)