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
d6049891
authored
2013-11-16 22:50:17 -0800
by
Michael Richards
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Build 0.6.5.
1 parent
726dff02
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
component.json
dist/rivets.js
dist/rivets.min.js
package.json
component.json
View file @
d604989
...
...
@@ -2,7 +2,7 @@
"name"
:
"rivets"
,
"repo"
:
"mikeric/rivets"
,
"description"
:
"Declarative data binding + templating solution."
,
"version"
:
"0.6.
4
"
,
"version"
:
"0.6.
5
"
,
"keywords"
:
[
"data binding"
,
"templating"
],
"scripts"
:
[
"dist/rivets.js"
],
"main"
:
"dist/rivets.js"
,
...
...
dist/rivets.js
View file @
d604989
// Rivets.js
// version: 0.6.
4
// version: 0.6.
5
// author: Michael Richards
// license: MIT
(
function
()
{
...
...
@@ -637,14 +637,14 @@
function
KeypathParser
()
{}
KeypathParser
.
parse
=
function
(
keypath
,
interfaces
,
root
)
{
var
char
,
current
,
index
,
tokens
;
var
char
,
current
,
tokens
,
_i
,
_len
;
tokens
=
[];
current
=
{
"interface"
:
root
,
path
:
''
};
for
(
index
in
keypath
)
{
char
=
keypath
[
index
];
for
(
_i
=
0
,
_len
=
keypath
.
length
;
_i
<
_len
;
_i
++
)
{
char
=
keypath
[
_i
];
if
(
__indexOf
.
call
(
interfaces
,
char
)
>=
0
)
{
tokens
.
push
(
current
);
current
=
{
...
...
dist/rivets.min.js
View file @
d604989
This diff is collapsed.
Click to expand it.
package.json
View file @
d604989
{
"name"
:
"rivets"
,
"description"
:
"Declarative data binding + templating solution."
,
"version"
:
"0.6.
4
"
,
"version"
:
"0.6.
5
"
,
"author"
:
"Michael Richards"
,
"url"
:
"http://rivetsjs.com"
,
"main"
:
"./dist/rivets.js"
,
...
...
Please
register
or
sign in
to post a comment