diff options
author | louisremi <louisremi@louisremi-laptop.(none)> | 2011-04-12 13:07:38 +0200 |
---|---|---|
committer | louisremi <louisremi@louisremi-laptop.(none)> | 2011-04-12 13:07:38 +0200 |
commit | 01a2b51b26cddc6eb22dcb900b5c7b9fdb217113 (patch) | |
tree | d400b8c7e8ced8b0e4046837f083374af9bf5d3a /test | |
parent | 02e0047e92de0f1575fb92c091806c4eb4b6ef26 (diff) | |
download | jquery-01a2b51b26cddc6eb22dcb900b5c7b9fdb217113.tar.gz jquery-01a2b51b26cddc6eb22dcb900b5c7b9fdb217113.zip |
switch double quotes with single quotes
Diffstat (limited to 'test')
-rw-r--r-- | test/unit/event.js | 2 |
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(){ |