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
fd75748c
authored
2013-11-16 22:40:02 -0800
by
Michael Richards
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Don't commit changes in dist/ before release/build commits.
1 parent
7f3e7d58
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
dist/rivets.js
dist/rivets.min.js
dist/rivets.js
View file @
fd75748
...
...
@@ -637,14 +637,14 @@
function
KeypathParser
()
{}
KeypathParser
.
parse
=
function
(
keypath
,
interfaces
,
root
)
{
var
char
,
current
,
tokens
,
_i
,
_len
;
var
char
,
current
,
index
,
tokens
;
tokens
=
[];
current
=
{
"interface"
:
root
,
path
:
''
};
for
(
_i
=
0
,
_len
=
keypath
.
length
;
_i
<
_len
;
_i
++
)
{
char
=
keypath
[
_i
];
for
(
index
in
keypath
)
{
char
=
keypath
[
index
];
if
(
__indexOf
.
call
(
interfaces
,
char
)
>=
0
)
{
tokens
.
push
(
current
);
current
=
{
...
...
dist/rivets.min.js
View file @
fd75748
This diff is collapsed.
Click to expand it.
Please
register
or
sign in
to post a comment