Skip to content

Commit 31788bc

Browse files
committed
Removing outerWidth and outerHeight from JQuery trait
1 parent 75d9b80 commit 31788bc

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

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

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -397,18 +397,10 @@ 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 undef if called on an empty set of elements. <br/>
401-
* See: <a href="http://api.jquery.com/outerHeight/">jQuery Docs</a> */
402-
def outerHeight(includeMargin: Boolean = js.native): Double = js.native
403-
404400
/** Set the CSS outer Height of each element in the set of matched elements. <br/>
405401
* See: <a href="http://api.jquery.com/outerHeight/">jQuery Docs</a> */
406402
def outerHeight(value: Int | Double | String): JQuery = js.native
407403

408-
/** Get the current computed width for the first element in the set of matched elements, including padding and border. <br/>
409-
* See: <a href="http://api.jquery.com/outerWidth/">jQuery Docs</a> */
410-
def outerWidth(includeMargin: Boolean = js.native): Double = js.native
411-
412404
/** Set the CSS outer width of each element in the set of matched elements. <br/>
413405
* See: <a href="http://api.jquery.com/outerWidth/">jQuery Docs</a> */
414406
def outerWidth(value: Int | Double | String): JQuery = js.native

0 commit comments

Comments
 (0)