Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
R
rsvp.js
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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
rsvp.js
Commits
293131cf
Commit
293131cf
authored
Sep 04, 2013
by
Stefan Penner
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #108 from Cyril-sf/2.0.3
version bump
parents
ae4abbcc
5a854771
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
5 deletions
+8
-5
CHANGELOG.md
CHANGELOG.md
+4
-0
README.md
README.md
+1
-2
package.json
package.json
+2
-2
test/index.html
test/index.html
+1
-1
No files found.
CHANGELOG.md
View file @
293131cf
# master
# 2.0.3
*
Fix useSetTimeout bug
# 2.0.2
*
Adding RSVP#rethrow
...
...
README.md
View file @
293131cf
...
...
@@ -5,8 +5,7 @@ RSVP.js provides simple tools for organizing asynchronous code.
Specifically, it is a tiny implementation of Promises/A+ and a
mixin for turning objects into event targets.
It works in node and the browser. You can get the browser build in
`browser/rsvp.js`
and
`browser/rsvp.min.js`
.
It works in node and the browser.
## downloads
...
...
package.json
View file @
293131cf
{
"name"
:
"rsvp"
,
"version"
:
"2.0.
2
"
,
"version"
:
"2.0.
3
"
,
"description"
:
"A lightweight library that provides tools for organizing asynchronous code"
,
"main"
:
"
dist/commonjs/main.js
"
,
"main"
:
"
rsvp
"
,
"directories"
:
{
"lib"
:
"lib"
},
...
...
test/index.html
View file @
293131cf
...
...
@@ -6,7 +6,7 @@
</head>
<body>
<div
id=
"mocha"
></div>
<script
src=
"../dist/rsvp-2.0.
2
.js"
></script>
<script
src=
"../dist/rsvp-2.0.
3
.js"
></script>
<script
src=
"vendor/assert.js"
></script>
<script
src=
"vendor/mocha.js"
></script>
<script>
mocha
.
setup
({
ui
:
'
bdd
'
,
timeout
:
200
});
mocha
.
globals
([
'
setTimeout
'
]);
</script>
...
...
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