aboutsummaryrefslogtreecommitdiffstats
path: root/test/unit/manipulation.js
diff options
context:
space:
mode:
authorOleg <markelog@gmail.com>2012-12-23 20:51:07 +0400
committerOleg <markelog@gmail.com>2012-12-24 03:04:19 +0400
commit2dd2e4886b394a85b86da9fbd433706a8af9b7cd (patch)
treef24498fc9155310fcdf9e50e14b9d7aa207c28e0 /test/unit/manipulation.js
parent9e703a2a19c0b248f4efb8cf8343d317c3a557f1 (diff)
downloadjquery-2dd2e4886b394a85b86da9fbd433706a8af9b7cd.tar.gz
jquery-2dd2e4886b394a85b86da9fbd433706a8af9b7cd.zip
Use tabs instead of spaces
"$" => "jQuery"
Diffstat (limited to 'test/unit/manipulation.js')
-rw-r--r--test/unit/manipulation.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/unit/manipulation.js b/test/unit/manipulation.js
index 2f67ff06d..b8b5e1724 100644
--- a/test/unit/manipulation.js
+++ b/test/unit/manipulation.js
@@ -2242,9 +2242,9 @@ test( "insertAfter, insertBefore, etc do not work when destination is original e
test( "Index for function argument should be received (#13094)", 2, function() {
var i = 0;
- jQuery("<div/><div/>").before(function( index ) {
- equal( index, i++, "Index should be correct" );
- });
+ jQuery("<div/><div/>").before(function( index ) {
+ equal( index, i++, "Index should be correct" );
+ });
});
@@ -2252,7 +2252,7 @@ test( "Make sure jQuery.fn.remove can work on elements in documentFragment", 1,
var fragment = document.createDocumentFragment(),
div = fragment.appendChild( document.createElement("div") );
- $( div ).remove();
+ jQuery( div ).remove();
equal( fragment.childNodes.length, 0, "div element was removed from documentFragment" );
});