aboutsummaryrefslogtreecommitdiffstats
path: root/bower_components/jquery/src/manipulation/var
diff options
context:
space:
mode:
authorLibravatarDererk <dererk@satellogic.com>2016-11-15 14:18:53 -0300
committerLibravatarDererk <dererk@satellogic.com>2016-11-15 14:18:53 -0300
commit1ad5102b7ddd181bb9c632b124d3ea4c7db28be6 (patch)
tree73dda18465d0f4b8eb52d4482282a387c9f67c95 /bower_components/jquery/src/manipulation/var
parentb67294f76809a681ff73f209ed691a3e3f00563d (diff)
parentffb671c61a24a9086343b54bad080e145ff33fc5 (diff)
Merge tag 'upstream/7.8.1'
Upstream version 7.8.1 # gpg: Firmado el mar 15 nov 2016 14:18:48 ART # gpg: usando RSA clave A6C7B88B9583046A11C5403E0B00FB6CEBE2D002 # gpg: Firma correcta de "Ulises Vitulli <dererk@debian.org>" [absoluta] # gpg: alias "Dererk <dererk@torproject.org>" [absoluta] # gpg: alias "Ulises Vitulli <uvitulli@fi.uba.ar>" [absoluta] # gpg: alias "Ulises Vitulli <dererk@satellogic.com>" [absoluta]
Diffstat (limited to 'bower_components/jquery/src/manipulation/var')
-rw-r--r--bower_components/jquery/src/manipulation/var/nodeNames.js5
-rw-r--r--bower_components/jquery/src/manipulation/var/rcheckableType.js6
-rw-r--r--bower_components/jquery/src/manipulation/var/rleadingWhitespace.js3
-rw-r--r--bower_components/jquery/src/manipulation/var/rscriptType.js3
-rw-r--r--bower_components/jquery/src/manipulation/var/rtagName.js3
5 files changed, 17 insertions, 3 deletions
diff --git a/bower_components/jquery/src/manipulation/var/nodeNames.js b/bower_components/jquery/src/manipulation/var/nodeNames.js
new file mode 100644
index 0000000..05bb604
--- /dev/null
+++ b/bower_components/jquery/src/manipulation/var/nodeNames.js
@@ -0,0 +1,5 @@
+define( function() {
+ return "abbr|article|aside|audio|bdi|canvas|data|datalist|" +
+ "details|dialog|figcaption|figure|footer|header|hgroup|main|" +
+ "mark|meter|nav|output|picture|progress|section|summary|template|time|video";
+} );
diff --git a/bower_components/jquery/src/manipulation/var/rcheckableType.js b/bower_components/jquery/src/manipulation/var/rcheckableType.js
index c27a15d..4c95394 100644
--- a/bower_components/jquery/src/manipulation/var/rcheckableType.js
+++ b/bower_components/jquery/src/manipulation/var/rcheckableType.js
@@ -1,3 +1,3 @@
-define(function() {
- return (/^(?:checkbox|radio)$/i);
-});
+define( function() {
+ return ( /^(?:checkbox|radio)$/i );
+} );
diff --git a/bower_components/jquery/src/manipulation/var/rleadingWhitespace.js b/bower_components/jquery/src/manipulation/var/rleadingWhitespace.js
new file mode 100644
index 0000000..96ef95f
--- /dev/null
+++ b/bower_components/jquery/src/manipulation/var/rleadingWhitespace.js
@@ -0,0 +1,3 @@
+define( function() {
+ return ( /^\s+/ );
+} );
diff --git a/bower_components/jquery/src/manipulation/var/rscriptType.js b/bower_components/jquery/src/manipulation/var/rscriptType.js
new file mode 100644
index 0000000..0c77c8a
--- /dev/null
+++ b/bower_components/jquery/src/manipulation/var/rscriptType.js
@@ -0,0 +1,3 @@
+define( function() {
+ return ( /^$|\/(?:java|ecma)script/i );
+} );
diff --git a/bower_components/jquery/src/manipulation/var/rtagName.js b/bower_components/jquery/src/manipulation/var/rtagName.js
new file mode 100644
index 0000000..9e54269
--- /dev/null
+++ b/bower_components/jquery/src/manipulation/var/rtagName.js
@@ -0,0 +1,3 @@
+define( function() {
+ return ( /<([\w:-]+)/ );
+} );