diff options
author | Scott González <scott.gonzalez@gmail.com> | 2016-07-07 10:18:18 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2016-07-07 10:18:18 -0400 |
commit | 4d9779342edc8c23eca8ab95861c323180292805 (patch) | |
tree | 4630037edc08522ad2ac98406455b13de10ffb2e /tests | |
parent | 92451b44c1ccdb4aa30f3c5418206abc1f0ff5de (diff) | |
download | jquery-ui-4d9779342edc8c23eca8ab95861c323180292805.tar.gz jquery-ui-4d9779342edc8c23eca8ab95861c323180292805.zip |
Resizable: Avoid `Array#map()` in tests for IE8
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/resizable/options.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit/resizable/options.js b/tests/unit/resizable/options.js index 6eeba98dd..03c40ff98 100644 --- a/tests/unit/resizable/options.js +++ b/tests/unit/resizable/options.js @@ -417,7 +417,7 @@ QUnit.test( "setOption handles", function( assert ) { var target = $( "<div></div>" ).resizable(); function checkHandles( expectedHandles ) { - expectedHandles = expectedHandles.map( function( value ) { + expectedHandles = $.map( expectedHandles, function( value ) { return ".ui-resizable-" + value; } ); |