aboutsummaryrefslogtreecommitdiffstats
path: root/src/wrap.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/wrap.js')
-rw-r--r--src/wrap.js9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/wrap.js b/src/wrap.js
index 41b716f9f..a42c04da7 100644
--- a/src/wrap.js
+++ b/src/wrap.js
@@ -1,10 +1,9 @@
define( [
"./core",
- "./var/isFunction",
"./core/init",
"./manipulation", // clone
"./traversing" // parent, contents
-], function( jQuery, isFunction ) {
+], function( jQuery ) {
"use strict";
@@ -13,7 +12,7 @@ jQuery.fn.extend( {
var wrap;
if ( this[ 0 ] ) {
- if ( isFunction( html ) ) {
+ if ( typeof html === "function" ) {
html = html.call( this[ 0 ] );
}
@@ -39,7 +38,7 @@ jQuery.fn.extend( {
},
wrapInner: function( html ) {
- if ( isFunction( html ) ) {
+ if ( typeof html === "function" ) {
return this.each( function( i ) {
jQuery( this ).wrapInner( html.call( this, i ) );
} );
@@ -59,7 +58,7 @@ jQuery.fn.extend( {
},
wrap: function( html ) {
- var htmlIsFunction = isFunction( html );
+ var htmlIsFunction = typeof html === "function";
return this.each( function( i ) {
jQuery( this ).wrapAll( htmlIsFunction ? html.call( this, i ) : html );