d6049891 by Michael Richards

Build 0.6.5.

1 parent 726dff02
......@@ -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",
......
// 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 = {
......
{
"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",
......