diff options
| author | Jonathan Barronville | 2014-06-07 19:13:28 -0400 | 
|---|---|---|
| committer | Jonathan Barronville | 2014-06-07 19:13:28 -0400 | 
| commit | b56e5c671ce89f1c8ddc67a4ac8d2f59de04ea85 (patch) | |
| tree | 80ce4d67ff46505dc1ec77b72daf7bed59abf8b4 /bower_components/jquery/src/core/parseHTML.js | |
| parent | 67ad58c27c4a2704532246d044e1ecbae2a11022 (diff) | |
| download | sellevate-b56e5c671ce89f1c8ddc67a4ac8d2f59de04ea85.tar.bz2 | |
Yo.
Diffstat (limited to 'bower_components/jquery/src/core/parseHTML.js')
| -rw-r--r-- | bower_components/jquery/src/core/parseHTML.js | 39 | 
1 files changed, 39 insertions, 0 deletions
| diff --git a/bower_components/jquery/src/core/parseHTML.js b/bower_components/jquery/src/core/parseHTML.js new file mode 100644 index 0000000..64cf2a1 --- /dev/null +++ b/bower_components/jquery/src/core/parseHTML.js @@ -0,0 +1,39 @@ +define([ +	"../core", +	"./var/rsingleTag", +	"../manipulation" // buildFragment +], function( jQuery, rsingleTag ) { + +// data: string of html +// 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" ) { +		return null; +	} +	if ( typeof context === "boolean" ) { +		keepScripts = context; +		context = false; +	} +	context = context || document; + +	var parsed = rsingleTag.exec( data ), +		scripts = !keepScripts && []; + +	// Single tag +	if ( parsed ) { +		return [ context.createElement( parsed[1] ) ]; +	} + +	parsed = jQuery.buildFragment( [ data ], context, scripts ); + +	if ( scripts && scripts.length ) { +		jQuery( scripts ).remove(); +	} + +	return jQuery.merge( [], parsed.childNodes ); +}; + +return jQuery.parseHTML; + +}); | 
