aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorlouisremi <louisremi@louisremi-laptop.(none)>2011-04-12 13:07:38 +0200
committerlouisremi <louisremi@louisremi-laptop.(none)>2011-04-12 13:07:38 +0200
commit01a2b51b26cddc6eb22dcb900b5c7b9fdb217113 (patch)
treed400b8c7e8ced8b0e4046837f083374af9bf5d3a /test
parent02e0047e92de0f1575fb92c091806c4eb4b6ef26 (diff)
downloadjquery-01a2b51b26cddc6eb22dcb900b5c7b9fdb217113.tar.gz
jquery-01a2b51b26cddc6eb22dcb900b5c7b9fdb217113.zip
switch double quotes with single quotes
Diffstat (limited to 'test')
-rw-r--r--test/unit/event.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/unit/event.js b/test/unit/event.js
index b46ef9ebb..155e971d7 100644
--- a/test/unit/event.js
+++ b/test/unit/event.js
@@ -2070,7 +2070,7 @@ test("window resize", function() {
test("focusin bubbles", function() {
expect(5);
- var input = jQuery( "<input type='text' />" ).prependTo( "body" ),
+ var input = jQuery( '<input type="text" />' ).prependTo( "body" ),
order = 0;
jQuery( "body" ).bind( "focusin.focusinBubblesTest", function(){