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
09082da7
authored
2013-06-04 18:04:32 -0700
by
Michael Richards
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Build 0.5.7.
1 parent
4e02f611
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
7 additions
and
7 deletions
component.json
dist/rivets.js
dist/rivets.min.js
package.json
src/rivets.coffee
component.json
View file @
09082da
...
...
@@ -2,7 +2,7 @@
"name"
:
"rivets"
,
"repo"
:
"mikeric/rivets"
,
"description"
:
"Declarative data binding facility."
,
"version"
:
"0.5.
6
"
,
"version"
:
"0.5.
7
"
,
"keywords"
:
[
"data binding"
,
"templating"
],
"scripts"
:
[
"dist/rivets.js"
],
"main"
:
"dist/rivets.js"
,
...
...
dist/rivets.js
View file @
09082da
// Rivets.js
// version: 0.5.
6
// version: 0.5.
7
// author: Michael Richards
// license: MIT
(
function
()
{
...
...
@@ -636,13 +636,13 @@
unless
:
{
block
:
true
,
bind
:
function
(
el
)
{
return
r
ivets
.
binders
[
"if"
].
bind
.
call
(
this
,
el
);
return
R
ivets
.
binders
[
"if"
].
bind
.
call
(
this
,
el
);
},
unbind
:
function
()
{
return
r
ivets
.
binders
[
"if"
].
unbind
.
call
(
this
);
return
R
ivets
.
binders
[
"if"
].
unbind
.
call
(
this
);
},
routine
:
function
(
el
,
value
)
{
return
r
ivets
.
binders
[
"if"
].
routine
.
call
(
this
,
el
,
!
value
);
return
R
ivets
.
binders
[
"if"
].
routine
.
call
(
this
,
el
,
!
value
);
}
},
"on-*"
:
{
...
...
dist/rivets.min.js
View file @
09082da
This diff is collapsed.
Click to expand it.
package.json
View file @
09082da
{
"name"
:
"rivets"
,
"description"
:
"Declarative data binding facility."
,
"version"
:
"0.5.
6
"
,
"version"
:
"0.5.
7
"
,
"author"
:
"Michael Richards"
,
"url"
:
"http://rivetsjs.com"
,
"main"
:
"./dist/rivets.js"
,
...
...
src/rivets.coffee
View file @
09082da
# Rivets.js
# =========
# > version: 0.5.
6
# > version: 0.5.
7
# > author: Michael Richards
# > license: MIT
# >
...
...
Please
register
or
sign in
to post a comment