Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
brainfood
/
rivets
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
7b72ce7f
authored
2013-04-05 01:20:25 +0300
by
Alan Plum
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Fixed implicit return.
1 parent
77f74eb6
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
1 deletions
src/rivets.coffee
src/rivets.coffee
View file @
7b72ce7
...
...
@@ -403,6 +403,8 @@ factory = (exports) ->
if
typeof
exports
==
'object'
factory
(
exports
)
else
if
typeof
define
==
'function'
&&
define
.
amd
define
[
'exports'
],
(
exports
)
->
@
rivets
=
factory
(
exports
)
define
[
'exports'
],
(
exports
)
->
factory
(
@
rivets
=
exports
)
return
exports
else
factory
(
@
rivets
=
{})
...
...
Please
register
or
sign in
to post a comment