Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthieu Aubry <mattab@users.noreply.github.com>2016-06-28 08:50:40 +0300
committerGitHub <noreply@github.com>2016-06-28 08:50:40 +0300
commit02daed6db8fb7269d1b3a466cbb32ed7fab76e85 (patch)
treea534b2905593d44eece6a9f896522e524cb0d28f /libs/bower_components/jquery/src/core/parseHTML.js
parentf981b2579a95ce60a2b7d2aa146925b4d2222e0a (diff)
Update JQuery to the latest 1.12.4 version (#10260)
* Update JQuery to the latest 1.* version * UI tests: Updated Jquery to latest version
Diffstat (limited to 'libs/bower_components/jquery/src/core/parseHTML.js')
-rw-r--r--libs/bower_components/jquery/src/core/parseHTML.js16
1 files changed, 9 insertions, 7 deletions
diff --git a/libs/bower_components/jquery/src/core/parseHTML.js b/libs/bower_components/jquery/src/core/parseHTML.js
index 64cf2a18a9..327d6ef5c7 100644
--- a/libs/bower_components/jquery/src/core/parseHTML.js
+++ b/libs/bower_components/jquery/src/core/parseHTML.js
@@ -1,11 +1,13 @@
-define([
+define( [
"../core",
+ "../var/document",
"./var/rsingleTag",
- "../manipulation" // buildFragment
-], function( jQuery, rsingleTag ) {
+ "../manipulation/buildFragment"
+], function( jQuery, document, rsingleTag, buildFragment ) {
// data: string of html
-// context (optional): If specified, the fragment will be created in this context, defaults to document
+// context (optional): If specified, the fragment will be created in this context,
+// defaults to document
// keepScripts (optional): If true, will include scripts passed in the html string
jQuery.parseHTML = function( data, context, keepScripts ) {
if ( !data || typeof data !== "string" ) {
@@ -22,10 +24,10 @@ jQuery.parseHTML = function( data, context, keepScripts ) {
// Single tag
if ( parsed ) {
- return [ context.createElement( parsed[1] ) ];
+ return [ context.createElement( parsed[ 1 ] ) ];
}
- parsed = jQuery.buildFragment( [ data ], context, scripts );
+ parsed = buildFragment( [ data ], context, scripts );
if ( scripts && scripts.length ) {
jQuery( scripts ).remove();
@@ -36,4 +38,4 @@ jQuery.parseHTML = function( data, context, keepScripts ) {
return jQuery.parseHTML;
-});
+} );