aboutsummaryrefslogtreecommitdiffstats
path: root/src/manipulation
diff options
context:
space:
mode:
authorOleg Gaidarenko <markelog@gmail.com>2015-08-16 09:59:58 +0300
committerOleg Gaidarenko <markelog@gmail.com>2015-09-07 20:03:50 +0300
commit10fdad742a2a6aa9f0e00b3e04fc5264797c53c7 (patch)
tree6b6d7b1375ff88f4bebbfa0703f7b595eb485df9 /src/manipulation
parent7aa46e0df8a673e6b00550bbbbed21eed50108b7 (diff)
downloadjquery-10fdad742a2a6aa9f0e00b3e04fc5264797c53c7.tar.gz
jquery-10fdad742a2a6aa9f0e00b3e04fc5264797c53c7.zip
Build: Update jscs and lint files
Fixes gh-2056
Diffstat (limited to 'src/manipulation')
-rw-r--r--src/manipulation/_evalUrl.js8
-rw-r--r--src/manipulation/buildFragment.js5
-rw-r--r--src/manipulation/getAll.js5
-rw-r--r--src/manipulation/setGlobalEval.js4
-rw-r--r--src/manipulation/support.js8
-rw-r--r--src/manipulation/var/rcheckableType.js6
-rw-r--r--src/manipulation/var/rscriptType.js4
-rw-r--r--src/manipulation/var/rtagName.js4
-rw-r--r--src/manipulation/wrapMap.js4
9 files changed, 25 insertions, 23 deletions
diff --git a/src/manipulation/_evalUrl.js b/src/manipulation/_evalUrl.js
index 59464bcd9..572fe30c7 100644
--- a/src/manipulation/_evalUrl.js
+++ b/src/manipulation/_evalUrl.js
@@ -1,9 +1,9 @@
-define([
+define( [
"../ajax"
], function( jQuery ) {
jQuery._evalUrl = function( url ) {
- return jQuery.ajax({
+ return jQuery.ajax( {
url: url,
// Make this explicit, since user can override this through ajaxSetup (#11264)
@@ -13,9 +13,9 @@ jQuery._evalUrl = function( url ) {
async: false,
global: false,
"throws": true
- });
+ } );
};
return jQuery._evalUrl;
-});
+} );
diff --git a/src/manipulation/buildFragment.js b/src/manipulation/buildFragment.js
index d5cb4062a..cfdd1c0e6 100644
--- a/src/manipulation/buildFragment.js
+++ b/src/manipulation/buildFragment.js
@@ -1,4 +1,4 @@
-define([
+define( [
"../core",
"./var/rtagName",
"./var/rscriptType",
@@ -23,6 +23,7 @@ function buildFragment( elems, context, scripts, selection, ignored ) {
// Add nodes directly
if ( jQuery.type( elem ) === "object" ) {
+
// Support: Android<4.1, PhantomJS<2
// push.apply(_, arraylike) throws on ancient WebKit
jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem );
@@ -98,4 +99,4 @@ function buildFragment( elems, context, scripts, selection, ignored ) {
}
return buildFragment;
-});
+} );
diff --git a/src/manipulation/getAll.js b/src/manipulation/getAll.js
index d08470b48..cc913f29e 100644
--- a/src/manipulation/getAll.js
+++ b/src/manipulation/getAll.js
@@ -1,8 +1,9 @@
-define([
+define( [
"../core"
], function( jQuery ) {
function getAll( context, tag ) {
+
// Support: IE9-11+
// Use typeof to avoid zero-argument method invocation on host objects (#15151)
var ret = typeof context.getElementsByTagName !== "undefined" ?
@@ -17,4 +18,4 @@ function getAll( context, tag ) {
}
return getAll;
-});
+} );
diff --git a/src/manipulation/setGlobalEval.js b/src/manipulation/setGlobalEval.js
index 2eab9cf53..8ca69a03a 100644
--- a/src/manipulation/setGlobalEval.js
+++ b/src/manipulation/setGlobalEval.js
@@ -1,4 +1,4 @@
-define([
+define( [
"../data/var/dataPriv"
], function( dataPriv ) {
@@ -17,4 +17,4 @@ function setGlobalEval( elems, refElements ) {
}
return setGlobalEval;
-});
+} );
diff --git a/src/manipulation/support.js b/src/manipulation/support.js
index ddea2ff98..4f6b9de87 100644
--- a/src/manipulation/support.js
+++ b/src/manipulation/support.js
@@ -1,9 +1,9 @@
-define([
+define( [
"../var/document",
"../var/support"
], function( document, support ) {
-(function() {
+( function() {
var fragment = document.createDocumentFragment(),
div = fragment.appendChild( document.createElement( "div" ) ),
input = document.createElement( "input" );
@@ -26,8 +26,8 @@ define([
// Make sure textarea (and checkbox) defaultValue is properly cloned
div.innerHTML = "<textarea>x</textarea>";
support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue;
-})();
+} )();
return support;
-});
+} );
diff --git a/src/manipulation/var/rcheckableType.js b/src/manipulation/var/rcheckableType.js
index c27a15dc4..4c95394ac 100644
--- a/src/manipulation/var/rcheckableType.js
+++ b/src/manipulation/var/rcheckableType.js
@@ -1,3 +1,3 @@
-define(function() {
- return (/^(?:checkbox|radio)$/i);
-});
+define( function() {
+ return ( /^(?:checkbox|radio)$/i );
+} );
diff --git a/src/manipulation/var/rscriptType.js b/src/manipulation/var/rscriptType.js
index 60ef70ac8..0c77c8a58 100644
--- a/src/manipulation/var/rscriptType.js
+++ b/src/manipulation/var/rscriptType.js
@@ -1,3 +1,3 @@
-define(function() {
+define( function() {
return ( /^$|\/(?:java|ecma)script/i );
-});
+} );
diff --git a/src/manipulation/var/rtagName.js b/src/manipulation/var/rtagName.js
index cd0b768e0..9e542694a 100644
--- a/src/manipulation/var/rtagName.js
+++ b/src/manipulation/var/rtagName.js
@@ -1,3 +1,3 @@
-define(function() {
+define( function() {
return ( /<([\w:-]+)/ );
-});
+} );
diff --git a/src/manipulation/wrapMap.js b/src/manipulation/wrapMap.js
index 7080bf996..3fa5f913e 100644
--- a/src/manipulation/wrapMap.js
+++ b/src/manipulation/wrapMap.js
@@ -1,4 +1,4 @@
-define(function() {
+define( function() {
// We have to close these tags to support XHTML (#13200)
var wrapMap = {
@@ -32,4 +32,4 @@ wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.the
wrapMap.th = wrapMap.td;
return wrapMap;
-});
+} );