Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
todomvc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Sven Franck
todomvc
Commits
dfe7d63f
Commit
dfe7d63f
authored
Jul 07, 2015
by
Arthur Verschaeve
Committed by
Sam Saccone
Jul 08, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
React-backbone: update deps
parent
3c0a2c0f
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
1094 additions
and
691 deletions
+1094
-691
examples/react-backbone/node_modules/backbone/backbone.js
examples/react-backbone/node_modules/backbone/backbone.js
+643
-378
examples/react-backbone/node_modules/classnames/index.js
examples/react-backbone/node_modules/classnames/index.js
+3
-3
examples/react-backbone/node_modules/jquery/dist/jquery.js
examples/react-backbone/node_modules/jquery/dist/jquery.js
+9
-4
examples/react-backbone/node_modules/underscore/underscore.js
...ples/react-backbone/node_modules/underscore/underscore.js
+439
-306
No files found.
examples/react-backbone/node_modules/backbone/backbone.js
View file @
dfe7d63f
This diff is collapsed.
Click to expand it.
examples/react-backbone/node_modules/classnames/index.js
View file @
dfe7d63f
...
...
@@ -35,13 +35,13 @@
return
classes
.
substr
(
1
);
}
if
(
typeof
define
===
'
function
'
&&
typeof
define
.
amd
===
'
object
'
&&
define
.
amd
)
{
if
(
typeof
module
!==
'
undefined
'
&&
module
.
exports
)
{
module
.
exports
=
classNames
;
}
else
if
(
typeof
define
===
'
function
'
&&
typeof
define
.
amd
===
'
object
'
&&
define
.
amd
){
// AMD. Register as an anonymous module.
define
(
function
()
{
return
classNames
;
});
}
else
if
(
typeof
module
!==
'
undefined
'
&&
module
.
exports
)
{
module
.
exports
=
classNames
;
}
else
{
window
.
classNames
=
classNames
;
}
...
...
examples/react-backbone/node_modules/jquery/dist/jquery.js
View file @
dfe7d63f
/*!
* jQuery JavaScript Library v2.1.
3
* jQuery JavaScript Library v2.1.
4
* http://jquery.com/
*
* Includes Sizzle.js
...
...
@@ -9,7 +9,7 @@
* Released under the MIT license
* http://jquery.org/license
*
* Date: 201
4-12-18T15:1
1Z
* Date: 201
5-04-28T16:0
1Z
*/
(
function
(
global
,
factory
)
{
...
...
@@ -67,7 +67,7 @@ var
// Use the correct document accordingly with window argument (sandbox)
document
=
window
.
document
,
version
=
"
2.1.
3
"
,
version
=
"
2.1.
4
"
,
// Define a local copy of jQuery
jQuery
=
function
(
selector
,
context
)
{
...
...
@@ -531,7 +531,12 @@ jQuery.each("Boolean Number String Function Array Date RegExp Object Error".spli
});
function
isArraylike
(
obj
)
{
var
length
=
obj
.
length
,
// Support: iOS 8.2 (not reproducible in simulator)
// `in` check used to prevent JIT error (gh-2145)
// hasOwn isn't used here due to false negatives
// regarding Nodelist length in IE
var
length
=
"
length
"
in
obj
&&
obj
.
length
,
type
=
jQuery
.
type
(
obj
);
if
(
type
===
"
function
"
||
jQuery
.
isWindow
(
obj
)
)
{
...
...
examples/react-backbone/node_modules/underscore/underscore.js
View file @
dfe7d63f
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment