diff options
author | Jesús Eduardo <heckyel@hyperbola.info> | 2017-08-06 20:43:24 -0500 |
---|---|---|
committer | Jesús Eduardo <heckyel@hyperbola.info> | 2017-08-06 20:43:24 -0500 |
commit | f7045b862a5b7c3de8ee2ea3da67616b38a667cc (patch) | |
tree | 504f420546df4934495bbd6f3d9761650b3783bd /lib/jquery/src/ajax/var | |
download | ytlibre-f7045b862a5b7c3de8ee2ea3da67616b38a667cc.tar.lz ytlibre-f7045b862a5b7c3de8ee2ea3da67616b38a667cc.tar.xz ytlibre-f7045b862a5b7c3de8ee2ea3da67616b38a667cc.zip |
first commit
Diffstat (limited to 'lib/jquery/src/ajax/var')
-rw-r--r-- | lib/jquery/src/ajax/var/location.js | 5 | ||||
-rw-r--r-- | lib/jquery/src/ajax/var/nonce.js | 7 | ||||
-rw-r--r-- | lib/jquery/src/ajax/var/rquery.js | 5 |
3 files changed, 17 insertions, 0 deletions
diff --git a/lib/jquery/src/ajax/var/location.js b/lib/jquery/src/ajax/var/location.js new file mode 100644 index 0000000..4171d18 --- /dev/null +++ b/lib/jquery/src/ajax/var/location.js @@ -0,0 +1,5 @@ +define( function() { + "use strict"; + + return window.location; +} ); diff --git a/lib/jquery/src/ajax/var/nonce.js b/lib/jquery/src/ajax/var/nonce.js new file mode 100644 index 0000000..6e23708 --- /dev/null +++ b/lib/jquery/src/ajax/var/nonce.js @@ -0,0 +1,7 @@ +define( [ + "../../core" +], function( jQuery ) { + "use strict"; + + return jQuery.now(); +} ); diff --git a/lib/jquery/src/ajax/var/rquery.js b/lib/jquery/src/ajax/var/rquery.js new file mode 100644 index 0000000..06fc374 --- /dev/null +++ b/lib/jquery/src/ajax/var/rquery.js @@ -0,0 +1,5 @@ +define( function() { + "use strict"; + + return ( /\?/ ); +} ); |