1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2026-01-25 12:35:55 +00:00

Update bootstrap and jquery versions for bootstrap theme

This commit is contained in:
James Hillyerd
2016-02-22 19:15:37 -08:00
parent 44f6407de8
commit bcc36ee965
172 changed files with 14086 additions and 6273 deletions

View File

@@ -1,3 +1,3 @@
define(function() {
define( function() {
return [];
});
} );

View File

@@ -1,4 +1,5 @@
define(function() {
define( function() {
// [[Class]] -> type pairs
return {};
});
} );

View File

@@ -1,5 +1,5 @@
define([
define( [
"./arr"
], function( arr ) {
return arr.concat;
});
} );

View File

@@ -0,0 +1,3 @@
define( function() {
return [];
} );

View File

@@ -0,0 +1,3 @@
define( function() {
return window.document;
} );

View File

@@ -0,0 +1,5 @@
define( [
"./document"
], function( document ) {
return document.documentElement;
} );

View File

@@ -1,5 +1,5 @@
define([
define( [
"./class2type"
], function( class2type ) {
return class2type.hasOwnProperty;
});
} );

View File

@@ -1,5 +1,5 @@
define([
define( [
"./arr"
], function( arr ) {
return arr.indexOf;
});
} );

View File

@@ -1,3 +1,3 @@
define(function() {
return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source;
});
define( function() {
return ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source;
} );

View File

@@ -1,5 +1,5 @@
define([
define( [
"./arr"
], function( arr ) {
return arr.push;
});
} );

View File

@@ -0,0 +1,7 @@
define( [
"../var/pnum"
], function( pnum ) {
return new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" );
} );

View File

@@ -1,3 +1,3 @@
define(function() {
return (/\S+/g);
});
define( function() {
return ( /\S+/g );
} );

View File

@@ -1,5 +1,5 @@
define([
define( [
"./arr"
], function( arr ) {
return arr.slice;
});
} );

View File

@@ -1,3 +0,0 @@
define(function() {
return typeof undefined;
});

View File

@@ -1,4 +1,5 @@
define(function() {
define( function() {
// All support tests are defined in their respective modules.
return {};
});
} );

View File

@@ -1,5 +1,5 @@
define([
define( [
"./class2type"
], function( class2type ) {
return class2type.toString;
});
} );