From ca88c377f918a9178c56e206b7bb13baefd30c91 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sat, 25 Mar 2017 13:13:28 +0100 Subject: accidentally committed minionlivesmatter changes to meta --- templates/assets/jquery/src/manipulation/var/rcheckableType.js | 3 +++ templates/assets/jquery/src/manipulation/var/rscriptType.js | 3 +++ templates/assets/jquery/src/manipulation/var/rtagName.js | 3 +++ 3 files changed, 9 insertions(+) create mode 100644 templates/assets/jquery/src/manipulation/var/rcheckableType.js create mode 100644 templates/assets/jquery/src/manipulation/var/rscriptType.js create mode 100644 templates/assets/jquery/src/manipulation/var/rtagName.js (limited to 'templates/assets/jquery/src/manipulation') diff --git a/templates/assets/jquery/src/manipulation/var/rcheckableType.js b/templates/assets/jquery/src/manipulation/var/rcheckableType.js new file mode 100644 index 0000000..4c95394 --- /dev/null +++ b/templates/assets/jquery/src/manipulation/var/rcheckableType.js @@ -0,0 +1,3 @@ +define( function() { + return ( /^(?:checkbox|radio)$/i ); +} ); diff --git a/templates/assets/jquery/src/manipulation/var/rscriptType.js b/templates/assets/jquery/src/manipulation/var/rscriptType.js new file mode 100644 index 0000000..0c77c8a --- /dev/null +++ b/templates/assets/jquery/src/manipulation/var/rscriptType.js @@ -0,0 +1,3 @@ +define( function() { + return ( /^$|\/(?:java|ecma)script/i ); +} ); diff --git a/templates/assets/jquery/src/manipulation/var/rtagName.js b/templates/assets/jquery/src/manipulation/var/rtagName.js new file mode 100644 index 0000000..9e54269 --- /dev/null +++ b/templates/assets/jquery/src/manipulation/var/rtagName.js @@ -0,0 +1,3 @@ +define( function() { + return ( /<([\w:-]+)/ ); +} ); -- cgit v1.3.1