From aa955c22ae18d55667006acd222dbc79e39a8b25 Mon Sep 17 00:00:00 2001 From: Sashi20 Date: Tue, 21 Aug 2018 16:31:05 +0530 Subject: Initial commit --- .../jquery/src/manipulation/_evalUrl.js | 18 ++++++++++++ .../jquery/src/manipulation/support.js | 32 ++++++++++++++++++++++ .../jquery/src/manipulation/var/rcheckableType.js | 3 ++ 3 files changed, 53 insertions(+) create mode 100644 static/website/bootstrap-css/bower_components/jquery/src/manipulation/_evalUrl.js create mode 100644 static/website/bootstrap-css/bower_components/jquery/src/manipulation/support.js create mode 100644 static/website/bootstrap-css/bower_components/jquery/src/manipulation/var/rcheckableType.js (limited to 'static/website/bootstrap-css/bower_components/jquery/src/manipulation') diff --git a/static/website/bootstrap-css/bower_components/jquery/src/manipulation/_evalUrl.js b/static/website/bootstrap-css/bower_components/jquery/src/manipulation/_evalUrl.js new file mode 100644 index 0000000..6704749 --- /dev/null +++ b/static/website/bootstrap-css/bower_components/jquery/src/manipulation/_evalUrl.js @@ -0,0 +1,18 @@ +define([ + "../ajax" +], function( jQuery ) { + +jQuery._evalUrl = function( url ) { + return jQuery.ajax({ + url: url, + type: "GET", + dataType: "script", + async: false, + global: false, + "throws": true + }); +}; + +return jQuery._evalUrl; + +}); diff --git a/static/website/bootstrap-css/bower_components/jquery/src/manipulation/support.js b/static/website/bootstrap-css/bower_components/jquery/src/manipulation/support.js new file mode 100644 index 0000000..822a014 --- /dev/null +++ b/static/website/bootstrap-css/bower_components/jquery/src/manipulation/support.js @@ -0,0 +1,32 @@ +define([ + "../var/support" +], function( support ) { + +(function() { + var fragment = document.createDocumentFragment(), + div = fragment.appendChild( document.createElement( "div" ) ), + input = document.createElement( "input" ); + + // Support: Safari<=5.1 + // Check state lost if the name is set (#11217) + // Support: Windows Web Apps (WWA) + // `name` and `type` must use .setAttribute for WWA (#14901) + input.setAttribute( "type", "radio" ); + input.setAttribute( "checked", "checked" ); + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + + // Support: Safari<=5.1, Android<4.2 + // Older WebKit doesn't clone checked state correctly in fragments + support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Support: IE<=11+ + // Make sure textarea (and checkbox) defaultValue is properly cloned + div.innerHTML = ""; + support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; +})(); + +return support; + +}); diff --git a/static/website/bootstrap-css/bower_components/jquery/src/manipulation/var/rcheckableType.js b/static/website/bootstrap-css/bower_components/jquery/src/manipulation/var/rcheckableType.js new file mode 100644 index 0000000..c27a15d --- /dev/null +++ b/static/website/bootstrap-css/bower_components/jquery/src/manipulation/var/rcheckableType.js @@ -0,0 +1,3 @@ +define(function() { + return (/^(?:checkbox|radio)$/i); +}); -- cgit