diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2015-06-01 23:25:38 +0200 |
---|---|---|
committer | Michał Gołębiowski <m.goleb@gmail.com> | 2015-06-13 23:14:36 +0200 |
commit | bb026fc12c3c2ad37f47f0919e484bddcdc3d291 (patch) | |
tree | 7ba8975dcfd6c912f8ecb71761648ad4a38efe9b /test/.jshintrc | |
parent | 9c8a3ecdc46156afd8f93aa44b6e6aea7c52c049 (diff) | |
download | jquery-bb026fc12c3c2ad37f47f0919e484bddcdc3d291.tar.gz jquery-bb026fc12c3c2ad37f47f0919e484bddcdc3d291.zip |
Core: Make jQuery objects iterable
Make iterating over jQuery objects possible using ES 2015 for-of:
for ( node of $( "<div id=narwhal>" ) ) {
console.log( node.id ); // "narwhal"
}
Fixes gh-1693
Diffstat (limited to 'test/.jshintrc')
-rw-r--r-- | test/.jshintrc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/.jshintrc b/test/.jshintrc index b55594f4f..7aef665c6 100644 --- a/test/.jshintrc +++ b/test/.jshintrc @@ -22,6 +22,7 @@ "define": false, "DOMParser": false, "Promise": false, + "Symbol": false, "QUnit": false, "ok": false, "equal": false, |